LSVersion Class¶
-
class
localsolver.LSVersion¶ Version, license and copyright info.
Summary¶
GetMajorVersionNumber |
Returns LocalSolver’s major version number. |
GetMinorVersionNumber |
Returns LocalSolver’s minor version number. |
GetBuildDate |
Returns LocalSolver’s build date. |
GetPlatform |
Returns the platform of the LocalSolver’s binary as a string. |
GetVersion |
Returns LocalSolver’s version as a string. |
GetVersionCode |
Returns LocalSolver’s version code as an integer in the range [0, 29999]. |
GetCopyright |
Returns LocalSolver’s copyright as a string. |
GetInfo |
Returns version and copyright info as a string. |
GetLicensePath |
Returns the license path of LocalSolver. |
SetLicensePath |
Change the license path used by LocalSolver. |
GetLicenseContent |
Returns the license content previously set with LSVersion.SetLicenseContent. |
SetLicenseContent |
Change the license content. |
Static methods¶
-
static int
GetMajorVersionNumber()¶ Returns LocalSolver’s major version number. This number is an integer in the range [0, 2999].
Returns: Major version number. Return type: int
-
static int
GetMinorVersionNumber()¶ Returns LocalSolver’s minor version number. This number is an integer in the range [0, 9].
Returns: Minor version number. Return type: int
-
static int
GetBuildDate()¶ Returns LocalSolver’s build date. This number is an integer
YYYYMMDDwithYYYYthe year,MMthe month,DDthe day.Returns: Build date. Return type: int
-
static int
GetPlatform()¶ Returns the platform of the LocalSolver’s binary as a string. The format of the string is
PPPPXXwherePPPPis the platform (Win, Linux or MacOS) andXXis the architecture (32 or 64 bits).Since: 3.0 Returns: Platform as string. Return type: string
-
static string
GetVersion()¶ Returns LocalSolver’s version as a string. The format of the string is:
MA.MI.YYYYMMDD-PPPPXXwithMAthe major number version,MIthe minor number version,YYYYthe year,MMthe month,DDthe day,PPPPthe platform (Win, Linux or MacOS) andXXthe architecture (32 or 64 bits)Returns: Version as string MA.MI.YYYYMMDD-PPPPXXReturn type: string
-
static int
GetVersionCode()¶ Returns LocalSolver’s version code as an integer in the range [0, 29999]. The version code is computed as follows:
MA * 10 + MIwithMAthe major number version,MIthe minor number version. Note that the version code can be encoded as a 16-bit integer.Returns: Version code Return type: int
-
static string
GetCopyright()¶ Returns LocalSolver’s copyright as a string.
Returns: Copyright notice. Return type: string
-
static string
GetInfo()¶ Returns version and copyright info as a string.
Returns: Version and copyright info. Return type: string
-
static string
GetLicensePath()¶ Returns the license path of LocalSolver. By default, LocalSolver looks for a license in the following locations, in that order:
- A file specified by a call to
LSVersion.SetLicensePath(string). - The
LS_LICENSE_PATHenvironment variable. - A
license.datfile in the current directory. - In the default location (
c:\localsolver_X_Y\license.daton Windows,/opt/localsolver_X_Y/license.daton Linux and Mac OS).
For windows users: If you used the installer to setup LocalSolver, the
LS_LICENSE_PATHenvironment variable is already defined and points to the license file present in the installation folder.Since: 3.0 Returns: Path to the license Return type: string See: LSVersion.SetLicensePath(string) See: LSVersion.GetLicenseContent() See: LSVersion.SetLicenseContent(string) - A file specified by a call to
-
static void
SetLicensePath(string path)¶ Change the license path used by LocalSolver.
Since: 3.0 Arguments: path (string) – New path for the license See: LSVersion.GetLicensePath() See: LSVersion.GetLicenseContent() See: LSVersion.SetLicenseContent(string)
-
static string
GetLicenseContent()¶ Returns the license content previously set with
LSVersion.SetLicenseContent.Since: 5.0 Returns: The content of the license or an empty string if the content was not set. Return type: string See: LSVersion.SetLicenseContent(string) See: LSVersion.GetLicensePath() See: LSVersion.SetLicensePath(string)
-
static void
SetLicenseContent(string licenseContent)¶ Change the license content. By default, LocalSolver try to get the license from the path specified in
LSVersion.SetLicensePathor in a default location. Use this function to set the license content directly, without using a file.Since: 5.0 Arguments: licenseContent (string) – content of the license to use. See: LSVersion.GetLicenseContent() See: LSVersion.GetLicensePath() See: LSVersion.SetLicensePath(string)