- Explicitely passed pred_subset_eq and pred_equals_eq as an argument to the
to_set and to_pred attributes, because it is no longer applied automatically
- Manually applied predicate1I in proof of accp_subset, because it is no longer
part of the claset
- Replaced psubset_def by less_le
#!/usr/bin/env bash
#
# $Id$
# Author: Makarius
#
# DESCRIPTION: Cumulative reports for Poly/ML profiling output.
THIS=$(cd $(dirname "$0"); echo "$PWD")
SRC="$1"
DST="$2"
mkdir -p "$DST"
for FILE in "$SRC"/*.gz
do
echo "$FILE"
NAME="$(basename "$FILE" .gz)"
gzip -dc "$FILE" | "$THIS/profiling_report" > "$DST/$NAME"
done