Index: src/route-rnd/regression/crbs/index.in =================================================================== --- src/route-rnd/regression/crbs/index.in (nonexistent) +++ src/route-rnd/regression/crbs/index.in (revision 1429) @@ -0,0 +1,8 @@ +@ bas_3net +A basic 3-net problem that most geometrical autorouters will fail on +(assuming a tight frame and a single layer). + +@ bas_corridor +Corridor problem: because of the triangulation being perpendicular +to the line-of-sight solution, the A* search normally wouldn't +find the shortcut within a corridor. With virtual concaves Index: src/route-rnd/regression/crbs/index.sh =================================================================== --- src/route-rnd/regression/crbs/index.sh (nonexistent) +++ src/route-rnd/regression/crbs/index.sh (revision 1429) @@ -0,0 +1,44 @@ +#!/bin/sh + +mkdir -p web + +./test.sh -r + +awk ' +BEGIN {n = 0; q = "\""; } +($1 == "@") { basename=$2; FILES[n] = basename; n++; next } +{ TEXT[basename] = TEXT[basename] " " $0 } + +END { + for(n = 0; FILES[n] != ""; n++) { + basename = FILES[n] + prev_bn = FILES[n-1] + next_bn = FILES[n+1] + html = "web/" basename ".html" + print "

route-rnd/crbs test output

", basename, "

" > html + print "

" > html + + print "

" TEXT[basename] "
" > html + + print "
" > html + print "" > html + print "" > html + print "
" > html + if (prev_bn != "") + print " ← previous input " > html + else + print " " > html + print " " > html + if (next_bn != "") + print " → next input " > html + else + print " " > html + print "
" > html + + close(html) + system("cp " basename ".*svg web") + } + system("cd web; ln -sf " FILES[0] ".html index.html") +} + +' < index.in \ No newline at end of file Property changes on: src/route-rnd/regression/crbs/index.sh ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property