scripts/valgrind-wrapper.sh
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 20 Feb 2010 18:39:03 +0100
changeset 839 f3bc4e9b5f3a
permissions -rwxr-xr-x
New heuristics for MCF algorithms (#340)
and some implementation improvements.

- A useful heuristic is added to NetworkSimplex to make the
initial pivots faster.
- A powerful global update heuristic is added to CostScaling
and the implementation is reworked with various improvements.
- Better relabeling in CostScaling to improve numerical stability
and make the code faster.
- A small improvement is made in CapacityScaling for better
delta computation.
- Add notes to the classes about the usage of vector<char> instead
of vector<bool> for efficiency reasons.
ladanyi@793
     1
#!/bin/sh
ladanyi@793
     2
ladanyi@793
     3
# Run in valgrind, with leak checking enabled
ladanyi@793
     4
ladanyi@793
     5
valgrind -q --leak-check=full "$@" 2> .valgrind-log
ladanyi@793
     6
ladanyi@793
     7
# Save the test result
ladanyi@793
     8
ladanyi@793
     9
result="$?"
ladanyi@793
    10
ladanyi@793
    11
# Valgrind should generate no error messages
ladanyi@793
    12
ladanyi@793
    13
log_contents="`cat .valgrind-log`"
ladanyi@793
    14
ladanyi@793
    15
if [ "$log_contents" != "" ]; then
ladanyi@793
    16
        cat .valgrind-log >&2
ladanyi@793
    17
        result=1
ladanyi@793
    18
fi
ladanyi@793
    19
ladanyi@793
    20
rm -f .valgrind-log
ladanyi@793
    21
ladanyi@793
    22
exit $result