- Jul 17, 2014
-
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
- Jul 16, 2014
-
-
Dominik Paulus authored
Some options and functions are still missing, e.g. MILP support
-
Dominik Paulus authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
Introduce a new generic data type lazylist, e.g. used for lazy rule enumerations.
-
Thorsten Wißmann authored
Propagation of satisfiability and unsatisfiability does not cover disjunctions and I don't get how propagation works, so I won't touch it yet. So this reverts the only partially implemented Disjunctive ruleEnumerations,
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
- Jul 11, 2014
-
-
Thorsten Wißmann authored
-
- Jul 10, 2014
-
-
Thorsten Wißmann authored
-
- May 16, 2014
-
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
- May 15, 2014
-
-
Thorsten Wißmann authored
The code converting maximal cliques to coalitions of CL is now much more readable.
-
Thorsten Wißmann authored
As ocaml is not purely functional, the following code snippets have different semantics: List.map (List.fold_left tmpf (bsetMakeRealEmpty ())) (List.map S.elements intlist) vs List.map (fun x -> List.fold_left tmpf (bsetMakeRealEmpty ()) x) (List.map S.elements intlist) The former code calls bsetMakeRealEmpty only once, but the latter calls ot for each element of the list returned by the (map ... intlist). Because of this, all coalitions were merged into one big set, i.e. there always was only one coalition: the union of all maximal disjoint sets. This of course triggered bad behaviour, which is fixed now by this commit. The code is unreadable anyway and will be improved a lot by the following commit. This closes #13
-
Thorsten Wißmann authored
-
Thorsten Wißmann authored
-
- May 06, 2014
-
-
Thorsten Wißmann authored
-