revision -> iteration for added_goals_evaluation
This commit is contained in:
parent
01f3da6b24
commit
006d599435
1 changed files with 3 additions and 3 deletions
|
|
@ -133,10 +133,10 @@ impl<'a, 'b> ProofTreeFormatter<'a, 'b> {
|
|||
) -> std::fmt::Result {
|
||||
writeln!(self.f, "TRY_EVALUATE_ADDED_GOALS: {:?}", added_goals_evaluation.result)?;
|
||||
|
||||
for (n, revision) in added_goals_evaluation.evaluations.iter().enumerate() {
|
||||
writeln!(self.f, "REVISION {n}")?;
|
||||
for (n, iterations) in added_goals_evaluation.evaluations.iter().enumerate() {
|
||||
writeln!(self.f, "ITERATION {n}")?;
|
||||
self.nested(|this| {
|
||||
for goal_evaluation in revision {
|
||||
for goal_evaluation in iterations {
|
||||
this.format_goal_evaluation(goal_evaluation)?;
|
||||
}
|
||||
Ok(())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue