Localsolver
6.0
|
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 string | GetPlatform () |
Returns the platform of the LocalSolver's binary as a string. | |
static 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 string | GetCopyright () |
Returns LocalSolver's copyright as a string. | |
static string | GetInfo () |
Returns version and copyright info as a string. | |
static string | GetLicensePath () |
Returns the license path of LocalSolver. | |
static void | SetLicensePath (string licensePath) |
Change the license path used by LocalSolver. | |
static string | GetLicenseContent () |
Returns the license content previously set with LSVersion::SetLicenseContent. | |
static void | SetLicenseContent (string licenseContent) |
Change the license content. |
|
static |
Returns LocalSolver's major version number.
This number is an integer in the range [0, 2999].
|
static |
Returns LocalSolver's minor version number.
This number is an integer in the range [0, 9].
|
static |
Returns LocalSolver's build date.
This number is an integer YYYYMMDD with YYYY the year, MM the month, DD the day.
|
static |
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).
Since version 3.0
|
static |
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.
|
static |
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.
|
static |
Returns LocalSolver's copyright as a string.
|
static |
Returns version and copyright info as a string.
|
static |
Returns the license path of LocalSolver.
By default, LocalSolver looks for the license in 4 different locations :
Use LSVersion::SetLicensePath to change the license path at runtime.
Since version 3.0
|
static |
Change the license path used by LocalSolver.
licensePath | new path for the license |
Since version 3.0
|
static |
Returns the license content previously set with LSVersion::SetLicenseContent.
Since version 5.0
|
static |
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. |
Since version 5.0