Skip to content

Commit

Permalink
Renaming of fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrych committed Oct 19, 2023
1 parent f6f1fc2 commit 7321fde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node.jl
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ function Bonobo.evaluate_node!(tree::Bonobo.BnBTree, node::FrankWolfeNode)
# Check feasibility of the iterate
active_set = node.active_set
x = FrankWolfe.compute_active_set_iterate!(node.active_set)
@assert is_linear_feasible(tree.root.problem.lmo, x)
@assert is_linear_feasible(tree.root.problem.tlmo, x)
for (_,v) in node.active_set
@assert is_linear_feasible(tree.root.problem.lmo, v)
@assert is_linear_feasible(tree.root.problem.tlmo, v)
end

# time tracking FW
Expand Down

0 comments on commit 7321fde

Please sign in to comment.