Changeset 1362:b4330c52caeb in lemon-0.x
- Timestamp:
- 04/15/05 23:15:30 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1807
- Location:
- src
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/demo/Makefile.am
r1361 r1362 31 31 lp_demo_LDFLAGS = $(GLPK_LIBS) 32 32 33 lp_ demo_SOURCES = lp_maxflow_demo.cc34 lp_ demo_CXXFLAGS = $(GLPK_CFLAGS)35 lp_ demo_LDFLAGS = $(GLPK_LIBS)33 lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc 34 lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) 35 lp_maxflow_demo_LDFLAGS = $(GLPK_LIBS) -
src/lemon/lp_skeleton.cc
r1359 r1362 32 32 } 33 33 34 void LpSkeleton::_setRowCoeffs(int i,35 int length,36 int const * indices,37 Value const * values)34 void LpSkeleton::_setRowCoeffs(int, 35 int, 36 int const *, 37 Value const *) 38 38 { 39 39 } 40 40 41 void LpSkeleton::_setColCoeffs(int i,42 int length,43 int const * indices,44 Value const * values)41 void LpSkeleton::_setColCoeffs(int, 42 int, 43 int const *, 44 Value const *) 45 45 { 46 46 } 47 47 48 void LpSkeleton::_setColLowerBound(int i, Value value)48 void LpSkeleton::_setColLowerBound(int, Value) 49 49 { 50 50 } 51 51 52 void LpSkeleton::_setColUpperBound(int i, Value value)52 void LpSkeleton::_setColUpperBound(int, Value) 53 53 { 54 54 } 55 55 56 void LpSkeleton::_setRowLowerBound(int i, Value value)56 void LpSkeleton::_setRowLowerBound(int, Value) 57 57 { 58 58 } 59 59 60 void LpSkeleton::_setRowUpperBound(int i, Value value)60 void LpSkeleton::_setRowUpperBound(int, Value) 61 61 { 62 62 } 63 63 64 void LpSkeleton::_setObjCoeff(int i, Value obj_coef)64 void LpSkeleton::_setObjCoeff(int, Value) 65 65 { 66 66 } … … 78 78 } 79 79 80 LpSkeleton::Value LpSkeleton::_getPrimal(int i)80 LpSkeleton::Value LpSkeleton::_getPrimal(int) 81 81 { 82 82 return 0;
Note: See TracChangeset
for help on using the changeset viewer.