Improvements in CapacityScaling.
Main changes:
- Use -potenital[] instead of potential[] to conform to the usual
terminology.
- Change the name of private members to start with "_".
- Change the name of function parameters not to start with "_".
- Remove unnecessary documentation for private members.
- Doc improvements.
4 export PATH=/usr/local/bin:$PATH
5 REPOSITORY=https://lemon.cs.elte.hu/svn/lemon/trunk
9 LASTREV_FILE=$ROOT/last-rev
10 LASTREV=`cat $LASTREV_FILE`
14 REV=`svn info $WORKINGCOPY|grep 'Revision:'|cut -f 2 -d ' '`
15 LOGFILE=${ROOT}/logs/${REV}.log
17 function make-dir () {
26 if [ $LASTREV -lt $REV ]; then
33 cp -r $WORKINGCOPY/doc/html latest-doc
34 echo $REV >$LASTREV_FILE
37 elif [ $1 = '--help' ]; then
39 echo ' doxymake --init'
40 echo ' doxymake --help'
43 elif [ $1 = '--init' ]; then
46 svn co $REPOSITORY $WORKINGCOPY
47 echo '0' >$LASTREV_FILE