Sort search results in order of relevance, where relevance =
a) better if 0 premises for intro or 1 premise for elim/dest rules
b) better if substitution size wrt to current goal is smaller
Only applies to intro, dest, elim, and simp
(contributed by Rafal Kolanski, NICTA)
#!/usr/bin/env bash
#
# $Id$
# Author: Markus Wenzel, TU Muenchen
#
# showtime - print time.
TIME="$1"
SECS=$[ $TIME % 60 ]
[ $SECS -lt 10 ] && SECS="0$SECS"
MINUTES=$[ ($TIME / 60) % 60 ]
[ $MINUTES -lt 10 ] && MINUTES="0$MINUTES"
HOURS=$[ $TIME / 3600 ]
echo "${HOURS}:${MINUTES}:${SECS}"