MPSolve  3.2.1
version.h
1 /*
2  * This file is part of MPSolve 3.2.1
3  *
4  * Copyright (C) 2001-2020, Dipartimento di Matematica "L. Tonelli", Pisa.
5  * License: http://www.gnu.org/licenses/gpl.html GPL version 3 or higher
6  *
7  * Authors:
8  * Leonardo Robol <leonardo.robol@unipi.it>
9  */
10 
11 #ifndef MPS_VERSION_H_
12 #define MPS_VERSION_H_
13 
14 #ifndef MPS_MAJOR_VERSION
15 #define MPS_MAJOR_VERSION 3
16 #endif
17 
18 #ifndef MPS_MINOR_VERSION
19 #define MPS_MINOR_VERSION 2
20 #endif
21 
22 #ifndef MPS_PATCH_VERSION
23 #define MPS_PATCH_VERSION 1
24 #endif
25 
26 const char * mps_get_version ();
27 
28 unsigned int mps_get_major_version();
29 
30 unsigned int mps_get_minor_version();
31 
32 unsigned int mps_get_patch_version();
33 
34 
35 #endif /* MPS_VERSION_H_ */