This repository was archived by the owner on Jan 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +63
-0
lines changed Expand file tree Collapse file tree 6 files changed +63
-0
lines changed Original file line number Diff line number Diff line change 1+ = Osi =
2+
3+ == Description ==
4+
5+ Osi (Open solver interface) is a C++ library providing abstract classes
6+ to a generic linear programming solver (over floating point numbers).
7+
8+ Website: https://projects.coin-or.org/Osi
9+
10+ == License ==
11+
12+ Osi is licensed under the Eclipse Public License (EPL)
13+
14+ == Upstream Contact ==
15+
16+ * mailing list http://list.coin-or.org/mailman/listinfo/osi
17+ * bug report http://projects.coin-or.org/Osi/newticket
Original file line number Diff line number Diff line change 1+ tarball =Osi-VERSION.tgz
2+ sha1 =86dcc1f750313e79ab15102c90fdf3f56a0e3577
3+ md5 =4c39e5ffe2634ad011499262f56fd56e
4+ cksum =73081898
Original file line number Diff line number Diff line change 1+ glpk cbc
2+
3+ ----------
4+ All lines of this file are ignored except the first.
5+ It is copied by SAGE_ROOT/build/make/install into SAGE_ROOT/build/make/Makefile.
Original file line number Diff line number Diff line change 1+ 0.107.9
Original file line number Diff line number Diff line change 1+ ###############################################################################
2+ #
3+ # FLINT Sage install script
4+ #
5+ ###############################################################################
6+
7+ if [ "$SAGE_LOCAL" = "" ]; then
8+ echo >&2 "Error: SAGE_LOCAL undefined - exiting..."
9+ echo >&2 "Maybe run 'sage -sh'?"
10+ exit 1
11+ fi
12+
13+ cd src
14+
15+ echo "Configuring FLINT."
16+ ./configure \
17+ --prefix="$SAGE_LOCAL" \
18+ --enable-gnu-packages
19+ if [ $? -ne 0 ]; then
20+ echo >&2 "Error: Failed to configure Osi."
21+ exit 1
22+ fi
23+
24+ echo "Building Osi"
25+ if [ $? -ne 0 ]; then
26+ echo >&2 "Error: Failed to build Osi."
27+ exit 1
28+ fi
29+
30+ echo "Installing Osi"
31+ $MAKE install
32+ if [ $? -ne 0 ]; then
33+ echo >&2 "Error: Failed to install Osi."
34+ exit 1
35+ fi
Original file line number Diff line number Diff line change 1+ optional
You can’t perform that action at this time.
0 commit comments