math.yaml 795 Bytes
---
# ----------------------------------------------------------------------------
# optional values applied to each topic, if undefined there
# ----------------------------------------------------------------------------

# defaults:
#   file: questions.yaml
#   shuffle_questions: true
#   choose: 6
#   max_tries: 2
#   forgetting_factor: 0.97
#   min_level: 0.01
#   append_wrong: true

# ----------------------------------------------------------------------------
# topics and their dependencies
# ----------------------------------------------------------------------------

topics:
  math/addition:
    name: Adição

  math/multiplication:
    name: Multiplicação
    deps:
      - math/addition

  math/prime-numbers:
    name: Números primos
    deps:
      - math/multiplication