Documentation

Aesop.Search.Queue

Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
Equations
  • q.addGoals grefs = { goals := q.goals ++ grefs.reverse }
Equations
  • q.popGoal = match q.goals.back? with | some g => (some g, { goals := q.goals.pop }) | none => (none, q)
Equations
  • One or more equations did not get rendered due to their size.
Equations
Equations
  • q.addGoals grefs = { goals := q.goals ++ grefs, pos := q.pos }
Equations
  • q.popGoal = if h : q.pos < q.goals.size then (some q.goals[q.pos], { goals := q.goals, pos := q.pos + 1 }) else (none, q)
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.