Location: LEMON/LEMON-official/test/Makefile.am - annotation
Load file history
Overall clean-up in maps.h
- Rename some map types:
* IntegerMap -> RangeMap
* StdMap -> SparseMap
* FunctorMap -> FunctorToMap
* MapFunctor -> MapToFunctor
* ForkWriteMap -> ForkMap
* SimpleMap -> WrapMap
* SimpleWriteMap -> WrapWriteMap
- Remove the read-only ForkMap version.
- Rename map-creator functions for the read-write arithmetic and
logical maps.
- Small fixes and improvements in the code.
- Fix the typedefs of RangeMap to work correctly with bool type, too.
- Rename template parameters, function parameters, and private members
in many classes to be uniform and to avoid parameter names starting
with underscore.
- Use Key and Value types instead of K and V template parameters in
public functions.
- Extend the documentation with examples (e.g. for basic arithmetic and
logical maps).
- Many doc improvements.
- Reorder the classes.
- StoreBoolMap, BackInserterBoolMap, FrontInserterBoolMap,
InserterBoolMap, FillBoolMap, SettingOrderBoolMap are almost unchanged,
since they will be removed.
- Also improve maps_test.cc to correctly check every map class, every
constructor, and every creator function.
r1:51eaad3a817b r1:51eaad3a817b r1:51eaad3a817b r4:3f411aa35bd7 r58:5f1f539f912f r58:5f1f539f912f r4:3f411aa35bd7 r10:99e499ca560b r4:3f411aa35bd7 r57:c1acf0018c0a r8:a1b1d672f37a r57:c1acf0018c0a r25:751cd8f9bb1c r10:99e499ca560b r4:3f411aa35bd7 r4:3f411aa35bd7 r10:99e499ca560b r1:51eaad3a817b r1:51eaad3a817b r4:3f411aa35bd7 r57:c1acf0018c0a r8:a1b1d672f37a r66:5f7a8570687d r57:c1acf0018c0a r25:751cd8f9bb1c r10:99e499ca560b r4:3f411aa35bd7 r4:3f411aa35bd7 | EXTRA_DIST += \
test/Makefile
noinst_HEADERS += \
test/digraph_test.h \
test/map_test.h \
test/test_tools.h
check_PROGRAMS += \
test/digraph_test \
test/dim_test \
test/graph_test \
test/maps_test \
test/random_test \
test/test_tools_fail \
test/test_tools_pass
TESTS += $(check_PROGRAMS)
XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
test_digraph_test_SOURCES = test/digraph_test.cc
test_dim_test_SOURCES = test/dim_test.cc
#test_error_test_SOURCES = test/error_test.cc
test_graph_test_SOURCES = test/graph_test.cc
test_maps_test_SOURCES = test/maps_test.cc
test_random_test_SOURCES = test/random_test.cc
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
test_test_tools_pass_SOURCES = test/test_tools_pass.cc
|