Skip to content
Marcelo Fornet edited this page May 23, 2020 · 1 revision

For every problem there is a config file stored at: attic/config.json. This file contains relevant information about the problem that will be used by acmX. In particular it has:

{
  "mainSolution": {
    "value": ""
  },
  "bruteSolution": {
    "value": ""
  },
  "generator": {
    "value": ""
  },
  "checker": {
    "value": ""
  }
}

Some of this fields might be omitted.

  • mainSolution.value Path to main solution. If omitted acmX will try to search for sol.cpp by default.
  • bruteSolution.value Path to brute solution.
  • generator.value Path to generator.
  • checker.value Path to checker. If omitted wcmp will be used instead.

Users are not expected to modify this file by hand, but yet, it might be useful some times.

Clone this wiki locally