MPSolve 3.2.1
Loading...
Searching...
No Matches
sort.h
Go to the documentation of this file.
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
16#ifndef MPS_SORT_H_
17#define MPS_SORT_H_
18
19MPS_BEGIN_DECLS
20
21void mps_fsort (mps_context * s);
22void mps_dsort (mps_context * s);
23void mps_msort (mps_context * s);
24
25MPS_END_DECLS
26
27#endif /* MPS_SORT_H_ */
28
29
void mps_msort(mps_context *s)
Sort the approximations saved in the current mps_context.
Definition: sort.c:107
void mps_dsort(mps_context *s)
Sort the approximations saved in the current mps_context.
Definition: sort.c:73
MPS_BEGIN_DECLS void mps_fsort(mps_context *s)
Sort the approximations saved in the current mps_context.
Definition: sort.c:38
this struct holds the state of the mps computation
Definition: context.h:55