Localsolver
5.5
|
Version and copyright info.
Static Public Member Functions | |
static int | getMajorVersionNumber () |
Returns LocalSolver's major version number. | |
static int | getMinorVersionNumber () |
Returns LocalSolver's minor version number. | |
static int | getBuildDate () |
Returns LocalSolver's build date. | |
static std::string | getPlatform () |
Returns the platform of the LocalSolver's binary as a string. | |
static std::string | getVersion () |
Returns LocalSolver's version as a string. | |
static int | getVersionCode () |
Returns LocalSolver's version code as an integer in the range [0, 29999]. | |
static std::string | getCopyright () |
Returns LocalSolver's copyright as a string. | |
static std::string | getInfo () |
Returns version and copyright info as a string. | |
static std::string | getLicensePath () |
Returns the license path of LocalSolver. | |
static void | setLicensePath (const std::string &licensePath) |
Change the license path used by LocalSolver. | |
static std::string | getLicenseContent () |
Returns the license content previously set with setLicenseContent. | |
static void | setLicenseContent (const std::string &licenseContent) |
Change the license content. |
|
inlinestatic |
Returns LocalSolver's major version number.
This number is an integer in the range [0, 2999].
|
inlinestatic |
Returns LocalSolver's minor version number.
This number is an integer in the range [0, 9].
|
inlinestatic |
Returns LocalSolver's build date.
This number is an integer YYYYMMDD with YYYY the year, MM the month, DD the day.
|
inlinestatic |
Returns the platform of the LocalSolver's binary as a string.
The format of the string is PPPPXX where PPPP is the platform (Win, Linux or MacOS) and XX is the architecture (32 or 64 bits).
|
inlinestatic |
Returns LocalSolver's version as a string.
The format of the string is: MA.MI.YYYYMMDD-PPPPXX with MA the major number version, MI the minor number version, YYYY the year, MM the month, DD the day, PPPP the platform (Win, Linux or MacOS) and XX the architecture.
|
inlinestatic |
Returns LocalSolver's version code as an integer in the range [0, 29999].
The version code is computed as follows: MA * 10 + MI with MA the major number version, MI the minor number version. Note that the version code can be encoded as a 16-bit integer.
|
inlinestatic |
Returns LocalSolver's copyright as a string.
|
inlinestatic |
Returns version and copyright info as a string.
|
inlinestatic |
Returns the license path of LocalSolver.
By default, LocalSolver looks for the license in 4 different locations :
Use setLicensePath to change the license path at runtime.
|
inlinestatic |
Change the license path used by LocalSolver.
licensePath | new path for the license |
|
inlinestatic |
Returns the license content previously set with setLicenseContent.
|
inlinestatic |
Change the license content.
By default, LocalSolver try to get the license from the path specified in setLicensePath or in a default location. Use this function to set the license content directly, without using a file.
licenseContent | content of the license to use. |