Contains TSPSG version information defines. More...
Go to the source code of this file.
Defines | |
#define | VERSIONID "$Id: version.h 71 2009-12-07 16:06:44Z laleppa $" |
TSPSG version ID. | |
#define | BUILD_VERSION_MAJOR 0 |
Major version of current TSPSG build. | |
#define | BUILD_VERSION_MINOR 1 |
Minor version of current TSPSG build. | |
#define | BUILD_RELEASE 2 |
TSPSG release number. | |
#define | BUILD_NUMBER 65535 |
Current TSPSG build number. | |
#define | BUILD_STATUS (dev build) |
TSPSG build status. | |
#define | QUOTE_X(x) #x |
A helper for QUOTE(x). | |
#define | QUOTE(x) QUOTE_X(x) |
Used for "conversion" of x to quoted string. | |
#define | BUILD_VERSION QUOTE(BUILD_VERSION_MAJOR.BUILD_VERSION_MINOR.BUILD_RELEASE BUILD_STATUS) |
Full version of TSPSG in the form: major .minor .release [ status ]. |
Contains TSPSG version information defines.
TSPSG: TSP Solver and Generator
This file is part of TSPSG.
TSPSG is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
TSPSG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with TSPSG. If not, see <http://www.gnu.org/licenses/>.
#define BUILD_NUMBER 65535 |
Current TSPSG build number.
This will only change on releases and will be the same as revision number.
#define BUILD_RELEASE 2 |
TSPSG release number.
Release number meanings:
#define BUILD_STATUS (dev build) |
TSPSG build status.
Determined based on BUILD_NUMBER and BUILD_RELEASE.
#define QUOTE_X | ( | x | ) | #x |