+ Runtime.getRuntime().freeMemory());
StopWatch sw = new StopWatch();
sw.start();
IModel model = createModel();
sw.stop();
result.modelCreation = sw.elapsedSeconds();
println("Seconds needed for creating the model: " + sw.elapsedSeconds());
println("Memory (model - [total:free]): "
+ Runtime.getRuntime().totalMemory() + " : "
+ Runtime.getRuntime().freeMemory());