MPSolve 3.2.1
Loading...
Searching...
No Matches
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
26const char * mps_get_version ();
27
28unsigned int mps_get_major_version();
29
30unsigned int mps_get_minor_version();
31
32unsigned int mps_get_patch_version();
33
34
35#endif /* MPS_VERSION_H_ */