Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7df955e5 authored by GUILLEMOT Alexandre's avatar GUILLEMOT Alexandre
Browse files

update USAGE.md

parent a0441741
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,9 @@ This document contains the help content for the `algpath` command-line program.
###### **Options:**
* `--horner`puts the equations into Horner form before processing
* `--homogenize`enable homogenization of equations, does nothing if the input is already homogeneous
* `--diff <DIFF>`differentiation mode for circuits
* `--horner`Puts the equations into Horner form before processing
* `--homogenize`Enable homogenization of equations, does nothing if the input is already homogeneous
* `--diff <DIFF>`Differentiation mode for circuits
Default value: `backward`
......@@ -31,6 +31,8 @@ This document contains the help content for the `algpath` command-line program.
Possible values: `reckless`, `arb`, `arb-reckless`
* `--stats` — Displays a bunch of statistics on the continuation instead of showing the solutions at the end of the path
* `--debug` — Shows debug info in stderr
......
......@@ -40,19 +40,19 @@ impl Debug for Arithmetic {
#[derive(Debug, clap::Parser)]
#[command(author, version, about)]
pub struct Configuration {
/// puts the equations into Horner form before processing
/// Puts the equations into Horner form before processing
#[arg(long)]
pub horner: bool,
/// enable homogenization of equations, does nothing if the input is already homogeneous
/// Enable homogenization of equations, does nothing if the input is already homogeneous
#[arg(long)]
pub homogenize: bool,
/// input in legacy format
/// Input in legacy format
#[arg(long, hide = true)]
pub legacy: bool,
/// differentiation mode for circuits
/// Differentiation mode for circuits
#[arg(long, default_value = "backward")]
pub diff: circuit::DifferentiationMode,
......@@ -71,11 +71,11 @@ pub struct Configuration {
#[arg(long, default_value = "arb-reckless")]
pub arithmetic: Arithmetic,
/// Displays a bunch of statitics on the continuation instead of showing the solutions at the end of the path.
/// Displays a bunch of statistics on the continuation instead of showing the solutions at the end of the path.
#[arg(long)]
pub stats: bool,
/// Debug info is shown in stderr
/// Shows debug info in stderr.
#[arg(long)]
pub debug: bool,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment