desbordante-core icon indicating copy to clipboard operation
desbordante-core copied to clipboard

Implement FDAlgorithm parameter getters

Open Mstrutov opened this issue 2 years ago • 0 comments

Frontend side needs information about available parameters, e.g. maxLHS, error, seed, etc. Therefore we need a method in base class FDAlgorithm that would concurrently output info in a form similar to: "{: }".

An example:

{
  "seed": {
    "min": 0,
    "type": "int"
  },
  "error": {
    "min": 0,
    "max": 1,
    "type": "double"
  }
  ...
}

Synchronize the API with frontend developers.

Mstrutov avatar Aug 30 '21 19:08 Mstrutov