-
Notifications
You must be signed in to change notification settings - Fork 2
/
censo.pro
144 lines (141 loc) · 5.08 KB
/
censo.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
TEMPLATE = app
CONFIG += console
CONFIG += thread
include(censo_libs.pri)
SOURCES += main.cpp \
Utils/definitions.cpp \
Utils/metrics.cpp \
Utils/linearinterpolation.cpp \
Utils/bsplinepoly.cpp \
OptimizationProblem/constraint.cpp \
OptimizationProblem/constraintlinear.cpp \
OptimizationProblem/constraintsine.cpp \
OptimizationProblem/constraintset.cpp \
OptimizationProblem/constraintquadratic.cpp \
OptimizationProblem/constraintbilinear.cpp \
OptimizationProblem/constraintpolynomial.cpp \
OptimizationProblem/constraintexponential.cpp \
OptimizationProblem/constraintbspline.cpp \
OptimizationProblem/writetogams.cpp \
SolverInterface/solveripopt.cpp \
SolverInterface/interfaceipopt.cpp \
SolverInterface/solverbonmin.cpp \
SolverInterface/interfacebonmin.cpp \
SolverInterface/solvergurobi.cpp \
BranchAndBound/node.cpp \
BranchAndBound/nodelist.cpp \
BranchAndBound/branchandbound.cpp \
BranchAndBound/bbutils.cpp \
BranchAndBound/Branching/brancher.cpp \
BranchAndBound/Branching/brancherinteger.cpp \
BranchAndBound/Branching/branchercontinuous.cpp \
BranchAndBound/Branching/branchercontinuousrandomvariable.cpp \
BranchAndBound/Branching/branchercontinuousmostpromising.cpp \
BranchAndBound/Branching/branchercontinuouslongestinterval.cpp \
BranchAndBound/Branching/brancherintegermostfractional.cpp \
BranchAndBound/Branching/brancheradmin.cpp \
BranchAndBound/BoundsTightening/obbt.cpp \
BranchAndBound/BoundsTightening/fbbt.cpp \
Projects/JOGO/jogoexamples.cpp \
Projects/PWL/pwlmodels.cpp \
Projects/PWL/pwpmodels.cpp \
Projects/FlowNetwork/flownetwork.cpp \
TestProblems/testproblem.cpp \
TestProblems/pop01.cpp \
TestProblems/pop02.cpp \
TestProblems/pop03.cpp \
TestProblems/pop04.cpp \
TestProblems/pop05.cpp \
TestProblems/pop06.cpp \
TestProblems/pop07.cpp \
TestProblems/pop08.cpp \
TestProblems/pop09.cpp \
TestProblems/pop10.cpp \
TestProblems/pop11.cpp \
TestProblems/pop12.cpp \
TestProblems/pop13.cpp \
TestProblems/michalewicz.cpp \
TestProblems/lp01.cpp \
TestProblems/lp02.cpp \
TestProblems/lp03.cpp \
TestProblems/qp01.cpp \
TestProblems/sixhumpcamel.cpp \
TestProblems/bilinearrelaxationtest.cpp \
TestProblems/asaadi1.cpp \
TestProblems/linearintervalanalysistest.cpp \
Test/testproblems.cpp \
Test/unittests.cpp \
OptimizationProblem/constraintapproximant.cpp
HEADERS += \
Utils/definitions.h \
Utils/metrics.h \
Utils/timer.h \
Utils/linearsolvers.h \
Utils/linearinterpolation.h \
Utils/bsplinepoly.h \
OptimizationProblem/variable.h \
OptimizationProblem/constraint.h \
OptimizationProblem/constraintlinear.h \
OptimizationProblem/constraintsine.h \
OptimizationProblem/constraintset.h \
OptimizationProblem/constraintquadratic.h \
OptimizationProblem/constraintbilinear.h \
OptimizationProblem/constraintpolynomial.h \
OptimizationProblem/constraintexponential.h \
OptimizationProblem/constraintbspline.h \
SolverInterface/solver.h \
SolverInterface/solveripopt.h \
SolverInterface/interfaceipopt.h \
SolverInterface/solverbonmin.h \
SolverInterface/interfacebonmin.h \
SolverInterface/solvergurobi.h \
BranchAndBound/node.h \
BranchAndBound/nodelist.h \
BranchAndBound/branchandbound.h \
BranchAndBound/bbutils.h \
BranchAndBound/Branching/brancher.h \
BranchAndBound/Branching/brancherinteger.h \
BranchAndBound/Branching/branchercontinuous.h \
BranchAndBound/Branching/branchercontinuousrandomvariable.h \
BranchAndBound/Branching/branchercontinuousmostpromising.h \
BranchAndBound/Branching/branchercontinuouslongestinterval.h \
BranchAndBound/Branching/brancherintegermostfractional.h \
BranchAndBound/Branching/brancheradmin.h \
BranchAndBound/BoundsTightening/boundstightener.h \
BranchAndBound/BoundsTightening/obbt.h \
BranchAndBound/BoundsTightening/fbbt.h \
Projects/JOGO/jogoexamples.h \
Projects/PWL/point.h \
Projects/PWL/polytope.h \
Projects/PWL/pwlmodels.h \
Projects/PWL/triangulation.h \
Projects/PWL/pwpmodels.h \
Projects/FlowNetwork/graph.h \
Projects/FlowNetwork/flownetwork.h \
Projects/FlowNetwork/flownetworkdata.h \
TestProblems/testproblem.h \
TestProblems/alltestproblems.h \
TestProblems/pop01.h \
TestProblems/pop02.h \
TestProblems/pop03.h \
TestProblems/pop04.h \
TestProblems/pop05.h \
TestProblems/pop06.h \
TestProblems/pop07.h \
TestProblems/pop08.h \
TestProblems/pop09.h \
TestProblems/pop10.h \
TestProblems/pop11.h \
TestProblems/pop12.h \
TestProblems/pop13.h \
TestProblems/michalewicz.h \
TestProblems/lp01.h \
TestProblems/lp02.h \
TestProblems/lp03.h \
TestProblems/qp01.h \
TestProblems/sixhumpcamel.h \
TestProblems/bilinearrelaxationtest.h \
TestProblems/asaadi1.h \
TestProblems/linearintervalanalysistest.h \
Test/unittests.h \
OptimizationProblem/constraintapproximant.h