direct weaving/escape-analysis

This commit is contained in:
Arndt Brenschede 2019-06-23 18:57:46 +02:00
parent 661a09817a
commit 9f6878f891
9 changed files with 482 additions and 45 deletions

View file

@ -126,8 +126,11 @@ public class BRouter
else
{
wplist.add( readPosition( args, 3, "to" ) );
re = new RoutingEngine( "mytrack", "mylog", args[0], wplist, readRoutingContext(args) );
RoutingContext rc = readRoutingContext(args);
rc.memoryclass = 16;
re = new RoutingEngine( "mytrack", "mylog", args[0], wplist, rc );
re.doRun( 0 );
}
if ( re.getErrorMessage() != null )
{