Skip to content

Commit 3fd6395

Browse files
committed
delete most of the old code (and tests)
1 parent 8e1ee3e commit 3fd6395

19 files changed

+1
-1726
lines changed

.gitignore

-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,4 @@
33
*.jl.*.cov
44
*.jl.mem
55
deps/deps.jl
6-
deps/downloads/
7-
deps/src/
8-
deps/usr/
96
deps/build.log
10-
/test/test.lp
11-
/test/test.mps

.travis.yml

-23
This file was deleted.

REQUIRE

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
julia 1.0
2-
BinDeps

benchmark/sparse_linprog.jl

-42
This file was deleted.

deps/build.jl

-53
Original file line numberDiff line numberDiff line change
@@ -1,54 +1 @@
1-
using BinDeps
2-
31
using Libdl
4-
5-
include("csip_version.jl")
6-
7-
CSIP_URL = "https://github.com/SCIP-Interfaces/CSIP/archive/v$(CSIP_VERSION).zip"
8-
CSIP_LIB = "libcsip"
9-
CSIP_UNPACKED = "CSIP-$(CSIP_VERSION)"
10-
11-
@BinDeps.setup
12-
13-
@assert haskey(ENV, "SCIPOPTDIR") "Environment variable `SCIPOPTDIR` not set!"
14-
15-
function validate_csip(name, handle)
16-
csip_version = ccall(Libdl.dlsym(handle, :CSIPgetVersion), Cint, ())
17-
csip_version == csip_required_int
18-
end
19-
20-
csipdep = library_dependency(CSIP_LIB, validate=validate_csip)
21-
22-
provides(Sources, Dict(URI(CSIP_URL) => csipdep),
23-
unpacked_dir=CSIP_UNPACKED)
24-
25-
src_dir = joinpath(BinDeps.srcdir(csipdep), CSIP_UNPACKED)
26-
scipopt_dir = ENV["SCIPOPTDIR"]
27-
28-
provides(SimpleBuild,
29-
(@build_steps begin
30-
GetSources(csipdep)
31-
@build_steps begin
32-
ChangeDirectory(joinpath(BinDeps.srcdir(csipdep), CSIP_UNPACKED))
33-
`make`
34-
`gcc -std=c99 -Wall -pedantic -I$(src_dir)/lib/include -I$(src_dir)/include -c $(src_dir)/src/csip.c -L$(src_dir)/lib -Wl,-rpath,$(scipopt_dir)/lib/ $(scipopt_dir)/lib/libscipopt.dylib -fPIC -o $(src_dir)/src/csip.o`
35-
` gcc -std=c99 -Wall -pedantic $(src_dir)/src/csip.o -L$(src_dir)/lib -Wl,-rpath,$(scipopt_dir)/lib/ $(scipopt_dir)/lib/libscipopt.dylib -fPIC -shared -dynamiclib -o $(src_dir)/lib/libcsip.dylib`
36-
`mkdir -p $(libdir(csipdep))`
37-
`install lib/libcsip.dylib $(libdir(csipdep))`
38-
end
39-
end), csipdep, os = :Darwin)
40-
41-
42-
provides(SimpleBuild,
43-
(@build_steps begin
44-
GetSources(csipdep)
45-
@build_steps begin
46-
ChangeDirectory(joinpath(BinDeps.srcdir(csipdep), CSIP_UNPACKED))
47-
`make`
48-
`mkdir -p $(libdir(csipdep))`
49-
`install lib/libcsip.so $(libdir(csipdep))`
50-
end
51-
end), csipdep, os = :Unix)
52-
53-
54-
@BinDeps.install Dict(:libcsip => :libcsip)

deps/csip_version.jl

-9
This file was deleted.

src/SCIP.jl

-36
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,3 @@
11
module SCIP
22

3-
if isfile(joinpath(dirname(@__FILE__),"..","deps","deps.jl"))
4-
include("../deps/deps.jl")
5-
else
6-
error("SCIP.jl not properly installed. Please run Pkg.build(\"SCIP\")")
7-
end
8-
9-
include("../deps/csip_version.jl")
10-
11-
using SparseArrays: issparse, findnz
12-
13-
import MathProgBase
14-
import MathProgBase.SolverInterface: AbstractLinearQuadraticModel,
15-
AbstractNonlinearModel,
16-
AbstractMathProgSolver,
17-
MathProgCallbackData,
18-
AbstractNLPEvaluator,
19-
LinearQuadraticModel
20-
21-
include("types.jl")
22-
include("csip_wrapper.jl")
23-
include("scip_wrapper.jl")
24-
include("mpb_interface.jl")
25-
include("params.jl")
26-
27-
function CSIPversion()
28-
VersionNumber("$(_majorVersion()).$(_minorVersion()).$(_patchVersion())")
29-
end
30-
31-
function __init__()
32-
csip_installed = CSIPversion()
33-
if csip_installed != csip_required
34-
depsdir = realpath(joinpath(dirname(@__FILE__),"..","deps"))
35-
error("Installed CSIP version is $(csip_installed), but we require $(csip_required). Run Pkg.build(\"SCIP\") to update.")
36-
end
37-
end
38-
393
end

0 commit comments

Comments
 (0)