COIN-OR::LEMON - Graph Library

Changeset 1362:b4330c52caeb in lemon-0.x


Ignore:
Timestamp:
04/15/05 23:15:30 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1807
Message:
  • Adding new lp_demo.cc finished
  • Several 'unused variable' warnings fixed in 'lp_skeleton.cc'
Location:
src
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/demo/Makefile.am

    r1361 r1362  
    3131lp_demo_LDFLAGS = $(GLPK_LIBS)
    3232
    33 lp_demo_SOURCES = lp_maxflow_demo.cc
    34 lp_demo_CXXFLAGS = $(GLPK_CFLAGS)
    35 lp_demo_LDFLAGS = $(GLPK_LIBS)
     33lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc
     34lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS)
     35lp_maxflow_demo_LDFLAGS = $(GLPK_LIBS)
  • src/lemon/lp_skeleton.cc

    r1359 r1362  
    3232  }
    3333 
    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 *)
    3838  {
    3939  }
    4040 
    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 *)
    4545  {
    4646  }
    4747 
    48   void LpSkeleton::_setColLowerBound(int i, Value value)
     48  void LpSkeleton::_setColLowerBound(int, Value)
    4949  {
    5050  }
    5151 
    52   void LpSkeleton::_setColUpperBound(int i, Value value)
     52  void LpSkeleton::_setColUpperBound(int, Value)
    5353  {
    5454  }
    5555 
    56   void LpSkeleton::_setRowLowerBound(int i, Value value)
     56  void LpSkeleton::_setRowLowerBound(int, Value)
    5757  {
    5858  }
    5959 
    60   void LpSkeleton::_setRowUpperBound(int i, Value value)
     60  void LpSkeleton::_setRowUpperBound(int, Value)
    6161  {
    6262  }
    6363 
    64   void LpSkeleton::_setObjCoeff(int i, Value obj_coef)
     64  void LpSkeleton::_setObjCoeff(int, Value)
    6565  {
    6666  }
     
    7878  }
    7979
    80   LpSkeleton::Value LpSkeleton::_getPrimal(int i)
     80  LpSkeleton::Value LpSkeleton::_getPrimal(int)
    8181  {
    8282    return 0;
Note: See TracChangeset for help on using the changeset viewer.