diff --git a/Project.toml b/Project.toml index 1af6da90d..b2ac6fc3c 100644 --- a/Project.toml +++ b/Project.toml @@ -2,7 +2,7 @@ name = "HomotopyContinuation" uuid = "f213a82b-91d6-5c5d-acf7-10f1c761b327" author = ["Sascha Timme ", "Paul Breiding "] license = "MIT" -version = "0.4.0" +version = "0.4.2" [deps] DynamicPolynomials = "7c1d4256-1411-5781-91ec-d7bc3513ac07" diff --git a/docs/make.jl b/docs/make.jl index ab6a01f9f..3120fecd5 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -11,7 +11,8 @@ makedocs( "Predictors and Correctors" => "predictors-correctors.md", "Path tracker" => "pathtracking.md", "Reference" => "reference.md" - ] + ], + strict=true ) deploydocs( diff --git a/docs/src/solving.md b/docs/src/solving.md index 815129fb0..32d09f2f1 100644 --- a/docs/src/solving.md +++ b/docs/src/solving.md @@ -85,11 +85,11 @@ isnonsingular ```@docs monodromy_solve -GroupActions +Monodromy.GroupActions ``` ### Strategies ```@docs -Triangle -Pental +Monodromy.Triangle +Monodromy.Petal ``` diff --git a/src/path_tracking.jl b/src/path_tracking.jl index 421719c7e..d56968753 100644 --- a/src/path_tracking.jl +++ b/src/path_tracking.jl @@ -9,7 +9,7 @@ include("path_tracking/tracking.jl") """ pathtracker_startsolutions(args...; kwargs...) -Construct a [`PathTracking.PathTracker`](@ref) and `startsolutions` in the same way [`solve`](@ref) +Construct a [`PathTracking.PathTracker`](@ref) and `startsolutions` in the same way `solve` does it. This also takes the same input arguments as `solve`. This is convenient if you want to investigate single paths. """ @@ -24,8 +24,8 @@ end """ pathtracker(args...; kwargs...) -Construct a [`PathTracking.PathTracker`](@ref) in the same way [`solve`](@ref) -does it. This als0 takes the same input arguments as [`solve`](@ref). This is convenient if you want +Construct a [`PathTracking.PathTracker`](@ref) in the same way `solve` +does it. This als0 takes the same input arguments as `solve`. This is convenient if you want to investigate single paths. """ function pathtracker(args...; kwargs...)