COIN-OR::LEMON - Graph Library

Changes in / [65:bfbc57a51fbb:31:742abd64255e] in lemon-1.2


Ignore:
Files:
9 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • .hgignore

    r9 r3  
    66*.o
    77.#.*
    8 *.log
    9 *.lo
    10 *.tar.*
    118Makefile.in
    129aclocal.m4
     
    2320lemon/stamp-h2
    2421doc/Doxyfile
    25 .dirstamp
    26 .libs/*
    27 .deps/*
     22lemon/.dirstamp
     23lemon/.libs/*
    2824
    2925syntax: regexp
    30 ^doc/html/.*
    31 ^autom4te.cache/.*
    32 ^build-aux/.*
    33 ^objs.*/.*
    34 ^test/[a-z_]*$
     26html/.*
     27autom4te.cache/.*
     28build-aux/.*
     29objs.*/.*
  • Makefile.am

    r5 r1  
    55
    66EXTRA_DIST = \
    7         LICENSE \
    87        m4/lx_check_cplex.m4 \
    98        m4/lx_check_glpk.m4 \
  • configure.ac

    r21 r1  
    77m4_define([lemon_version_nano], [])
    88m4_define([lemon_version_tag], [hg])
    9 m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg id -i]))])
    10 m4_define([lemon_version], [lemon_version_major().lemon_version_minor()ifelse(lemon_version_micro(), [], [], [.lemon_version_micro()])ifelse(lemon_version_nano(), [], [], [.lemon_version_nano()])ifelse(lemon_version_tag(), [], [], lemon_version_tag(), [hg], [[_]lemon_version_tag()[_]lemon_hg_revision()], [[_]lemon_version_tag()])])
     9m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg tip |grep ^changeset |cut -d ':' -f 3]))])
     10m4_define([lemon_version], [lemon_version_major().lemon_version_minor()ifelse(lemon_version_micro(), [], [], [.lemon_version_micro()])ifelse(lemon_version_nano(), [], [], [.lemon_version_nano()])ifelse(lemon_version_tag(), [], [], lemon_version_tag(), [hg], [[_]lemon_version_tag()[]lemon_hg_revision()], [[_]lemon_version_tag()])])
    1111
    1212AC_PREREQ([2.59])
  • lemon/Makefile.am

    r65 r25  
    88
    99lemon_libemon_la_SOURCES = \
    10         lemon/base.cc \
    11         lemon/random.cc
    12 
     10        lemon/base.cc
    1311
    1412lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
     
    1715lemon_HEADERS += \
    1816        lemon/concept_check.h \
    19         lemon/dim2.h \
    20         lemon/random.h \
    2117        lemon/list_graph.h \
    2218        lemon/maps.h \
  • lemon/bits/invalid.h

    r13 r7  
    2525namespace lemon {
    2626
    27   /// \brief Dummy type to make it easier to create invalid iterators.
     27  /// \brief Dummy type to make it easier to make invalid iterators.
    2828  ///
    2929  /// See \ref INVALID for the usage.
     
    3535  };
    3636 
    37   /// \brief Invalid iterators.
    38   ///
     37  /// Invalid iterators.
     38 
    3939  /// \ref Invalid is a global type that converts to each iterator
    4040  /// in such a way that the value of the target iterator will be invalid.
  • lemon/tolerance.h

    r16 r7  
    4949  ///\sa Tolerance<long double>
    5050  ///\sa Tolerance<int>
    51 #if defined __GNUC__ && !defined __STRICT_ANSI__ 
    5251  ///\sa Tolerance<long long int>
    53 #endif
    5452  ///\sa Tolerance<unsigned int>
    55 #if defined __GNUC__ && !defined __STRICT_ANSI__ 
    5653  ///\sa Tolerance<unsigned long long int>
    57 #endif
    5854
    5955  template<class T>
     
    135131    bool negative(Value a) const { return -_epsilon>a; }
    136132    ///Returns \c true if \c a is \e surely non-zero
    137     bool nonZero(Value a) const { return positive(a)||negative(a); }
     133    bool nonZero(Value a) const { return positive(a)||negative(a); };
    138134
    139135    ///@}
     
    186182    bool negative(Value a) const { return -_epsilon>a; }
    187183    ///Returns \c true if \c a is \e surely non-zero
    188     bool nonZero(Value a) const { return positive(a)||negative(a); }
     184    bool nonZero(Value a) const { return positive(a)||negative(a); };
    189185
    190186    ///@}
     
    237233    bool negative(Value a) const { return -_epsilon>a; }
    238234    ///Returns \c true if \c a is \e surely non-zero
    239     bool nonZero(Value a) const { return positive(a)||negative(a); }
     235    bool nonZero(Value a) const { return positive(a)||negative(a); };
    240236
    241237    ///@}
     
    270266    static bool negative(Value a) { return 0>a; }
    271267    ///Returns \c true if \c a is \e surely non-zero
    272     static bool nonZero(Value a) { return a!=0; }
     268    static bool nonZero(Value a) { return a!=0; };
    273269
    274270    ///@}
     
    303299    static bool negative(Value) { return false; }
    304300    ///Returns \c true if \c a is \e surely non-zero
    305     static bool nonZero(Value a) { return a!=0; }
     301    static bool nonZero(Value a) { return a!=0; };
    306302
    307303    ///@}
     
    337333    static bool negative(Value a) { return 0>a; }
    338334    ///Returns \c true if \c a is \e surely non-zero
    339     static bool nonZero(Value a) { return a!=0;}
     335    static bool nonZero(Value a) { return a!=0;};
    340336
    341337    ///@}
     
    370366    static bool negative(Value) { return false; }
    371367    ///Returns \c true if \c a is \e surely non-zero
    372     static bool nonZero(Value a) { return a!=0;}
     368    static bool nonZero(Value a) { return a!=0;};
    373369
    374370    ///@}
     
    407403    static bool negative(Value a) { return 0>a; }
    408404    ///Returns \c true if \c a is \e surely non-zero
    409     static bool nonZero(Value a) { return a!=0;}
     405    static bool nonZero(Value a) { return a!=0;};
    410406
    411407    ///@}
     
    442438    static bool negative(Value) { return false; }
    443439    ///Returns \c true if \c a is \e surely non-zero
    444     static bool nonZero(Value a) { return a!=0;}
     440    static bool nonZero(Value a) { return a!=0;};
    445441
    446442    ///@}
  • test/Makefile.am

    r65 r25  
    44noinst_HEADERS += \
    55        test/test_tools.h
    6 
     6 
    77check_PROGRAMS += \
    8         test/dim_test \
    98        test/maps_test \
    10         test/random_test \
    119        test/test_tools_fail \
    1210        test/test_tools_pass
    13 
     11 
    1412TESTS += $(check_PROGRAMS)
    1513XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1614
    17 test_dim_test_SOURCES = test/dim_test.cc
    1815test_maps_test_SOURCES = test/maps_test.cc
    19 test_random_test_SOURCES = test/random_test.cc
    2016test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    2117test_test_tools_pass_SOURCES = test/test_tools_pass.cc
Note: See TracChangeset for help on using the changeset viewer.