Skip to content
Snippets Groups Projects
Commit bd9d84ab authored by Reiner Jung's avatar Reiner Jung
Browse files

Changed formula for relative chart.

parent a078558a
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,7 @@ public class CompileResultsMain {
if (BUILD_LABEL.equals(value.getKey()) || TIME_LABEL.equals(value.getKey())) {
valueMap.put(value.getKey(), value.getValue());
} else {
valueMap.put(value.getKey(), new DoubleNode(value.getValue().asDouble()/baseline));
valueMap.put(value.getKey(), new DoubleNode((value.getValue().asDouble()-baseline)/baseline));
}
}
relativeResultsNode.add(new ObjectNode(factory, valueMap));
......
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