Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
LARA
inox
Merge requests
!114
Early initialization for solvers options
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Early initialization for solvers options
github/fork/jad-hamza/early-options
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Viktor Kuncak
requested to merge
github/fork/jad-hamza/early-options
into
master
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Created by: jad-hamza
Fix for
https://github.com/epfl-lara/inox/issues/113
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
81e4c3c9
1 commit,
1 year ago
1 file
+
2
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/scala/inox/Options.scala
+
2
−
3
Options
@@ -219,7 +219,7 @@ object optTimeout extends OptionDef[Duration] {
def
apply
(
secs
:
Double
)
:
OptionValue
[
Duration
]
=
apply
(
secs
.
seconds
)
}
object
optSelectedSolvers
extends
SetOptionDef
[
String
]
{
object
optSelectedSolvers
extends
{
val
name
=
"solvers"
val
default
=
Set
(
"nativez3"
)
val
elementParser
:
OptionParser
[
String
]
=
{
s
=>
@@ -227,7 +227,6 @@ object optSelectedSolvers extends SetOptionDef[String] {
}
val
usageRhs
=
"s1,s2,..."
}
with
SetOptionDef
[
String
]
{
override
def
formatDefault
:
String
=
default
.
mkString
(
","
)
}
Loading