COIN-OR::LEMON - Graph Library

Custom Query (545 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 545)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#35 fixed Port .lgf related tools Balazs Dezso Alpar Juttner
Description

This involves the .lgf specification and the reader and writer classes (GraphReader,GraphWriter, LemonReader and LemonWriter)

They also need a thorough revision, the .lgf specification must be clarified and simplified a lot.

#36 fixed Revise StoreBoolMap implementation Peter Kovacs Peter Kovacs
Description
  1. StoreBoolMap is now write-only, but it is said to be read-write map in the documentation.
  1. The set() function is const, which is strange. That is why _end iterator is declared mutable. I suggest a non-const set() function, a const _begin and a non-const _end iterator.
#38 fixed Revise constMap() functions Balazs Dezso Peter Kovacs
Description

One version of the overloaded constMap() function can't be called. It could be used to create a ConstMap instance with inlined constant value.

  • ConstMap<int,Const<int,10> > cm; works, but
  • constMap<int,Const<int,10> >(); does not work. It causes a compiler error: no matching function for call to ‘constMap()’.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Note: See TracQuery for help on using queries.