diff --git a/run.go b/run.go index e151bf7..d9d15d0 100644 --- a/run.go +++ b/run.go @@ -81,9 +81,17 @@ func run() { wg.Wait() - // pL, benchCount := algo.PrepComparisonOfMeans(&wg) + var pL *report.PicList - // report.SaveComparisonOfMeans(*pL, benchCount) + var benchCount int + + if *c2jDE && *c2SOMAT3A { + pL, benchCount = algo.PrepCEC2020ComparisonOfMeans(&wg) + } else { + pL, benchCount = algo.PrepComparisonOfMeans(&wg) + } + + report.SaveComparisonOfMeans(*pL, benchCount) report.SaveTexAllPics() report.SaveTexAllTables() }