From 67de54a8daf4e92328e6539ebd1fc623aff34222 Mon Sep 17 00:00:00 2001 From: dfridovi Date: Fri, 15 Nov 2024 15:19:35 -0600 Subject: [PATCH] typo fix --- src/solver.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solver.jl b/src/solver.jl index 7405d19..142be41 100644 --- a/src/solver.jl +++ b/src/solver.jl @@ -15,6 +15,6 @@ A typical value of τ is 0.995. Once we converge to ||F(z; \epsilon)|| ≤ ϵ, we typically decrease ϵ by a factor of 0.1 or 0.2, with smaller values chosen when the previous subproblem is solved in fewer iterations. """ -function solve(::InteriorPoint, mcp::MCP, x₀, y₀) +function solve(::InteriorPoint, mcp::PrimalDualMCP, x₀, y₀) # TODO! end