Skip to content

Commit

Permalink
Improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Aug 8, 2013
1 parent 638c5c1 commit a3c9a8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/checkers/inference/Constraint.scala
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ case class SubtypeConstraint(sub: Slot, sup: Slot) extends Constraint {
}
}

/** Represents viewpoint adaptation. */
case class CombineConstraint(target: Slot, decl: Slot, res: Slot) extends Constraint {
override def toString(): String = {
"combine constraint: " + target + " |> " + decl + " = " + res
Expand Down
3 changes: 3 additions & 0 deletions src/checkers/inference/pbssolver/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"PBS" stands for "pseudo boolean solver", which means a solver for boolean
constraints (like SAT), but with preferences or weights attached (like
Max-SAT).

0 comments on commit a3c9a8e

Please sign in to comment.