Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Commits
fcde1045
Commit
fcde1045
authored
13 years ago
by
Ali Sinan Köksal
Browse files
Options
Downloads
Patches
Plain Diff
Sat solver accepting DIMACS format input
parent
4c297b57
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cp-demo/SatSolver.scala
+19
-12
19 additions, 12 deletions
cp-demo/SatSolver.scala
with
19 additions
and
12 deletions
cp-demo/SatSolver.scala
+
19
−
12
View file @
fcde1045
import
cp.Definitions._
import
cp.Terms._
import
scala.io.Source
object
SatSolver
extends
App
{
val
p
roblem
:
List
[
List
[
Int
]]
=
List
(
object
SatSolver
{
val
defaultP
roblem
:
List
[
List
[
Int
]]
=
List
(
List
(-
1
,
2
,
3
),
List
(
1
,
-
2
),
List
(
4
)
)
type
CM
=
Constraint1
[
Map
[
Int
,
Boolean
]]
val
solution
:
CM
=
problem
.
foldLeft
[
CM
]((
m
:
Map
[
Int
,
Boolean
])
=>
true
)((
cons
:
CM
,
clause
:
List
[
Int
])
=>
cons
&&
clause
.
foldLeft
[
CM
]((
m
:
Map
[
Int
,
Boolean
])
=>
false
)((
cons
:
CM
,
lit
:
Int
)
=>
{
val
isPos
=
lit
>
0
val
abs
=
scala
.
math
.
abs
(
lit
)
cons
||
((
m
:
Map
[
Int
,
Boolean
])
=>
m
(
abs
)
==
isPos
)
}))
def
main
(
args
:
Array
[
String
])
:
Unit
=
{
val
answer
=
solution
.
solve
println
(
"Solution map : "
+
answer
)
(
1
to
4
).
foreach
(
i
=>
println
(
"i : "
+
answer
(
i
)))
val
problem
:
List
[
List
[
Int
]]
=
if
(
args
.
length
>
0
)
(
for
(
line
<-
Source
.
fromFile
(
args
(
0
)).
getLines
if
(!
line
.
startsWith
(
"c"
)
&&
!
line
.
startsWith
(
"p"
)))
yield
{
line
.
split
(
" "
).
toList
.
map
(
_
.
toInt
)
}).
toList
else
defaultProblem
type
CM
=
Constraint1
[
Map
[
Int
,
Boolean
]]
val
solution
:
CM
=
problem
.
foldLeft
[
CM
]((
m
:
Map
[
Int
,
Boolean
])
=>
true
)((
cons
:
CM
,
clause
:
List
[
Int
])
=>
cons
&&
clause
.
foldLeft
[
CM
]((
m
:
Map
[
Int
,
Boolean
])
=>
false
)((
cons
:
CM
,
lit
:
Int
)
=>
{
val
isPos
=
lit
>
0
val
abs
=
scala
.
math
.
abs
(
lit
)
cons
||
((
m
:
Map
[
Int
,
Boolean
])
=>
m
(
abs
)
==
isPos
)
}))
val
answer
=
solution
.
solve
println
(
"Solution map : "
+
answer
)
(
1
to
4
).
foreach
(
i
=>
println
(
"i : "
+
answer
(
i
)))
}
}
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