Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
algpath
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
Numerical algebraic geometry
algpath
Commits
7df955e5
Commit
7df955e5
authored
1 week ago
by
GUILLEMOT Alexandre
Browse files
Options
Downloads
Patches
Plain Diff
update USAGE.md
parent
a0441741
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
USAGE.md
+5
-3
5 additions, 3 deletions
USAGE.md
src/cli.rs
+6
-6
6 additions, 6 deletions
src/cli.rs
with
11 additions
and
9 deletions
USAGE.md
+
5
−
3
View file @
7df955e5
...
...
@@ -16,9 +16,9 @@ This document contains the help content for the `algpath` command-line program.
###### **Options:**
*
`--horner`
—
p
uts the equations into Horner form before processing
*
`--homogenize`
—
e
nable homogenization of equations, does nothing if the input is already homogeneous
*
`--diff <DIFF>`
—
d
ifferentiation mode for circuits
*
`--horner`
—
P
uts the equations into Horner form before processing
*
`--homogenize`
—
E
nable homogenization of equations, does nothing if the input is already homogeneous
*
`--diff <DIFF>`
—
D
ifferentiation 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
...
...
This diff is collapsed.
Click to expand it.
src/cli.rs
+
6
−
6
View file @
7df955e5
...
...
@@ -40,19 +40,19 @@ impl Debug for Arithmetic {
#[derive(Debug,
clap::Parser)]
#[command(author,
version,
about)]
pub
struct
Configuration
{
///
p
uts the equations into Horner form before processing
///
P
uts the equations into Horner form before processing
#[arg(long)]
pub
horner
:
bool
,
///
e
nable homogenization of equations, does nothing if the input is already homogeneous
///
E
nable homogenization of equations, does nothing if the input is already homogeneous
#[arg(long)]
pub
homogenize
:
bool
,
///
i
nput in legacy format
///
I
nput in legacy format
#[arg(long,
hide
=
true
)]
pub
legacy
:
bool
,
///
d
ifferentiation mode for circuits
///
D
ifferentiation 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 stati
s
tics on the continuation instead of showing the solutions at the end of the path.
#[arg(long)]
pub
stats
:
bool
,
///
D
ebug info
is shown
in stderr
///
Shows d
ebug info in stderr
.
#[arg(long)]
pub
debug
:
bool
,
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment