Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1c0f1947 authored by Tomofumi Yuki's avatar Tomofumi Yuki
Browse files

swap order of ErrorStats.of call in SimulationAccuracyEvaluator

parent 5467f56c
No related branches found
No related tags found
1 merge request!4Develop
......@@ -223,7 +223,7 @@ public class SimulationAccuracyEvaluator implements IAccuracyEvaluator {
if(refSnap.length != curSnap.length)
throw new RuntimeException("Number of values in snapshot " + i + " differ between current and "
+ "reference implemetation: " +refSnap.length + " vs " + curSnap.length);
return ErrorStats.ofDiff(curSnap, refSnap);
return ErrorStats.ofDiff(refSnap, curSnap);
}).collect(toList());
snapshotErrorStatsMap.put(sym, snapshotErrorStats);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment