math.yaml 882 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: Addition

  math/subtraction:
    name: Subtraction
    deps:
      - math/addition

  math/multiplication:
    name: Multiplication
    deps:
      - math/addition

  math/division:
    name: Division
    deps:
      - math/subtraction
      - math/multiplication