-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathCBS-SIPP.pro
52 lines (51 loc) · 1.23 KB
/
CBS-SIPP.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
TARGET = CCBS
win32 {
QMAKE_LFLAGS += -static -static-libgcc -static-libstdc++
}
SOURCES += main.cpp \
cbs.cpp \
config.cpp \
map.cpp \
simplex/columnset.cpp \
simplex/constraint.cpp \
simplex/matrix.cpp \
simplex/objectivefunction.cpp \
simplex/simplex.cpp \
simplex/variable.cpp \
tinyxml2.cpp \
task.cpp \
sipp.cpp \
xml_logger.cpp \
heuristic.cpp
HEADERS += \
config.h \
simplex/columnset.h \
simplex/constraint.h \
simplex/datamismatchexception.h \
simplex/divisionbyzeroexception.h \
simplex/indexoutofboundexception.h \
simplex/matrix.h \
simplex/matrixissingularexception.h \
simplex/matrixnotsquareexception.h \
simplex/memoryreachedoutexception.h \
simplex/notavectorexception.h \
simplex/objectivefunction.h \
simplex/pilal.h \
simplex/pilalexceptions.h \
simplex/simplex.h \
simplex/simplexexceptions.h \
simplex/sizemismatchexception.h \
simplex/variable.h \
structs.h \
cbs.h \
map.h \
tinyxml2.h \
task.h \
const.h \
sipp.h \
xml_logger.h \
heuristic.h