Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
peregrine
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
i7
peregrine
Commits
5a52a77a
Commit
5a52a77a
authored
Feb 16, 2015
by
Philipp Meyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed minimization command line argument
parent
b7158ad2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
src/Options.hs
src/Options.hs
+3
-5
No files found.
src/Options.hs
View file @
5a52a77a
...
...
@@ -241,11 +241,9 @@ options =
"Use simplification level 2 for invariant generation"
,
Option
"m"
[
"minimize"
]
(
OptArg
(
\
arg
opt
->
case
arg
of
Nothing
->
Right
opt
{
optMinimizeRefinement
=
1
}
Just
is
->
case
reads
is
of
[(
i
,
""
)]
|
i
>=
1
->
Right
opt
{
optMinimizeRefinement
=
i
}
_
->
Left
(
"invalid argument for minimization method: "
++
is
)
(
ReqArg
(
\
arg
opt
->
case
reads
arg
of
[(
i
,
""
)]
->
Right
opt
{
optMinimizeRefinement
=
i
}
_
->
Left
(
"invalid argument for minimization method: "
++
arg
)
)
"METHOD"
)
"Minimize size of refinement structure by method METHOD (1-4)"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment