https://github.com/CGAL/cgal
Revision 6554279e9a254b22da2610eee81a7a07fe73746a authored by Sébastien Loriot on 12 May 2015, 08:21:53 UTC, committed by Sébastien Loriot on 12 May 2015, 08:21:53 UTC
1 parent 8bd7270
Raw File
Tip revision: 6554279e9a254b22da2610eee81a7a07fe73746a authored by Sébastien Loriot on 12 May 2015, 08:21:53 UTC
fix the test for the dimension of the affine hull of the dual points
Tip revision: 6554279
clean_tree.csh
#! /usr/local/bin/zsh -f

find . -name "*.o" -exec rm {} \;
find . -name "*.exe" -exec rm {} \;
find . -name "*~" -exec rm {} \;
find . -name "\#*" -exec rm {} \;
find . -name "*.old" -exec rm {} \;
find . -name "*.bak" -exec rm {} \;
back to top