From afdf117c23e8996e707d6678eeb9ef8134f5135c Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:34:11 -0400 Subject: [PATCH 1/6] Update src/tikz_export.jl Co-authored-by: tmigot --- src/tikz_export.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tikz_export.jl b/src/tikz_export.jl index 7954d25..923e68b 100644 --- a/src/tikz_export.jl +++ b/src/tikz_export.jl @@ -21,7 +21,7 @@ Export tikz figure of the performance profiles given by `T` in `filename`. * `grid::Bool=true` : display grid if true. * `colours::Vector{String} = []` : colours of the plots, should have as many elements as the number of columns of `T`. * `linestyles::Vector{String} = []` : line style (dashed, dotted, ...) of the plots, should have as many elements as the number of columns of `T`. -* `linewidth::AbstractFloat = 1.0` : line with of the plots. +* `linewidth::AbstractFloat = 1.0` : line width of the plots. * `xlabel::String = ""` : x axis label. If empty, uses the one returns by `performance_profile_axis_labels`. * `ylabel::String = ""` : x axis label. If empty, uses the one returns by `performance_profile_axis_labels`. From b2327d7e6dbe1c17f346b8a09038e5c793f244fb Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:34:25 -0400 Subject: [PATCH 2/6] Update src/tikz_export.jl Co-authored-by: tmigot --- src/tikz_export.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tikz_export.jl b/src/tikz_export.jl index 923e68b..81eecae 100644 --- a/src/tikz_export.jl +++ b/src/tikz_export.jl @@ -22,7 +22,7 @@ Export tikz figure of the performance profiles given by `T` in `filename`. * `colours::Vector{String} = []` : colours of the plots, should have as many elements as the number of columns of `T`. * `linestyles::Vector{String} = []` : line style (dashed, dotted, ...) of the plots, should have as many elements as the number of columns of `T`. * `linewidth::AbstractFloat = 1.0` : line width of the plots. -* `xlabel::String = ""` : x axis label. If empty, uses the one returns by `performance_profile_axis_labels`. +* `xlabel::String = ""` : x-axis label. If empty, uses the one returned by `performance_profile_axis_labels`. * `ylabel::String = ""` : x axis label. If empty, uses the one returns by `performance_profile_axis_labels`. Other keyword arguments are passed `performance_profile_data`. From d0b64e9df5085c88d5d3010f4d0f3f3ef728ce3d Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:34:35 -0400 Subject: [PATCH 3/6] Update src/tikz_export.jl Co-authored-by: tmigot --- src/tikz_export.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tikz_export.jl b/src/tikz_export.jl index 81eecae..0b2bd9c 100644 --- a/src/tikz_export.jl +++ b/src/tikz_export.jl @@ -23,7 +23,7 @@ Export tikz figure of the performance profiles given by `T` in `filename`. * `linestyles::Vector{String} = []` : line style (dashed, dotted, ...) of the plots, should have as many elements as the number of columns of `T`. * `linewidth::AbstractFloat = 1.0` : line width of the plots. * `xlabel::String = ""` : x-axis label. If empty, uses the one returned by `performance_profile_axis_labels`. -* `ylabel::String = ""` : x axis label. If empty, uses the one returns by `performance_profile_axis_labels`. +* `ylabel::String = ""` : y-axis label. If empty, uses the one returned by `performance_profile_axis_labels`. Other keyword arguments are passed `performance_profile_data`. From 066ab130ef27b90842dbde519ace7949ed89c709 Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:34:45 -0400 Subject: [PATCH 4/6] Update src/tikz_export.jl Co-authored-by: tmigot --- src/tikz_export.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tikz_export.jl b/src/tikz_export.jl index 0b2bd9c..b0feedc 100644 --- a/src/tikz_export.jl +++ b/src/tikz_export.jl @@ -25,7 +25,7 @@ Export tikz figure of the performance profiles given by `T` in `filename`. * `xlabel::String = ""` : x-axis label. If empty, uses the one returned by `performance_profile_axis_labels`. * `ylabel::String = ""` : y-axis label. If empty, uses the one returned by `performance_profile_axis_labels`. -Other keyword arguments are passed `performance_profile_data`. +Other keyword arguments are passed to `performance_profile_data`. """ function export_performance_profile_tikz( From ba3f5be2c312ca65c1c10e226d9ab6e85a02a839 Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:35:13 -0400 Subject: [PATCH 5/6] Update src/performance_profiles.jl Co-authored-by: tmigot --- src/performance_profiles.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/performance_profiles.jl b/src/performance_profiles.jl index 675e8a7..0adf929 100644 --- a/src/performance_profiles.jl +++ b/src/performance_profiles.jl @@ -160,7 +160,7 @@ end """ function performance_profile_data_mat(T;kwargs...) -Retruns `performance_profile_data` output (vectors) as matrices. Matrices are padded with NaN if necessary. +Returns `performance_profile_data` output (vectors) as matrices. Matrices are padded with NaN if necessary. """ function performance_profile_data_mat(T::Matrix{Float64};kwargs...) x_data, y_data, max_ratio = performance_profile_data(T;kwargs...) From 2ef164c934c46b4276f8fe75849657e71ad06e75 Mon Sep 17 00:00:00 2001 From: d-monnet <70266099+d-monnet@users.noreply.github.com> Date: Mon, 30 Oct 2023 11:35:22 -0400 Subject: [PATCH 6/6] Update src/performance_profiles.jl Co-authored-by: tmigot --- src/performance_profiles.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/performance_profiles.jl b/src/performance_profiles.jl index 0adf929..5989263 100644 --- a/src/performance_profiles.jl +++ b/src/performance_profiles.jl @@ -187,7 +187,7 @@ Export a performance profile plot data as .csv file. Profiles data are padded wi ## Keyword Arguments -* `solver_names :: Vector{S}` : names of the solvers. +- `solver_names :: Vector{S}` : names of the solvers. - `header::Vector{String}`: Contains .csv file column names. Note that `header` value does not change columns order in .csv exported files (see Output). Other keyword arguments are passed to `performance_profile_data`.