- ADDMC computes exact literal-weighted model counts of formulas in conjunctive normal form
- Developer: Vu H. N. Phan
- M.S. thesis: Weighted Model Counting with Algebraic Decision Diagrams
- Author: Vu H. N. Phan
- AAAI-2020 paper: ADDMC: Weighted Model Counting with Algebraic Decision Diagrams
- Authors:
- 2020/06/07: mc-2020
- Model Counting Competition, weighted track
- 2020/02/02: v1.0.0
- AAAI 2020 conference
- Assets:
- Benchmarks: benchmarks.zip
- Experimental data: experimenting.zip
See INSTALL.md
./addmc -h
==================================================================
ADDMC: Algebraic Decision Diagram Model Counter (help: 'addmc -h')
Version mc-2020, released on 2020/06/07
==================================================================
Usage:
addmc [OPTION...]
Optional options:
-h, --hi help information
--cf arg cnf file path (to use stdin, type: '--cf -') Default: -
--wf arg weight format in cnf file:
1 UNWEIGHTED
2 MINIC2D
3 CACHET
4 MCC Default: 4
--ch arg clustering heuristic:
1 MONOLITHIC
2 LINEAR
3 BUCKET_LIST
4 BUCKET_TREE
5 BOUQUET_LIST
6 BOUQUET_TREE Default: 6
--cv arg cluster variable order heuristic (negate to invert):
1 APPEARANCE
2 DECLARATION
3 RANDOM
4 MCS
5 LEXP Default: 5
6 LEXM
--dv arg diagram variable order heuristic (negate to invert):
1 APPEARANCE
2 DECLARATION
3 RANDOM
4 MCS Default: 4
5 LEXP
6 LEXM
--rs arg random seed Default: 10
--vl arg verbosity level:
0 solution only Default: 0
1 parsed info as well
2 clusters as well
3 cnf literal weights as well
4 input lines as well
./addmc < examples/track2_000.mcc2020_wcnf
c ==================================================================
c ADDMC: Algebraic Decision Diagram Model Counter (help: 'addmc -h')
c Version mc-2020, released on 2020/06/07
c ==================================================================
c Process ID of this main program:
c pid 208191
c Reading CNF formula...
c ==================================================================
c Getting cnf from stdin... (end input with 'Enter' then 'Ctrl d')
c Getting cnf from stdin: done
c ==================================================================
c Computing output...
c ------------------------------------------------------------------
s wmc 1.37729e-05
c ------------------------------------------------------------------
c ==================================================================
c seconds 0.034
c ==================================================================
./addmc --cf examples/UNWEIGHTED.cnf --wf 1
c ==================================================================
c ADDMC: Algebraic Decision Diagram Model Counter (help: 'addmc -h')
c Version mc-2020, released on 2020/06/07
c ==================================================================
c Process ID of this main program:
c pid 358012
c Reading CNF formula...
c Computing output...
c ------------------------------------------------------------------
s mc 1
c ------------------------------------------------------------------
c ==================================================================
c seconds 0.019
c ==================================================================
./addmc --cf examples/MINIC2D.cnf --wf 2
c ==================================================================
c ADDMC: Algebraic Decision Diagram Model Counter (help: 'addmc -h')
c Version mc-2020, released on 2020/06/07
c ==================================================================
c Process ID of this main program:
c pid 358102
c Reading CNF formula...
c Computing output...
c ------------------------------------------------------------------
s wmc 2.2
c ------------------------------------------------------------------
c ==================================================================
c seconds 0.018
c ==================================================================
./addmc --cf examples/CACHET.cnf --wf 3
c ==================================================================
c ADDMC: Algebraic Decision Diagram Model Counter (help: 'addmc -h')
c Version mc-2020, released on 2020/06/07
c ==================================================================
c Process ID of this main program:
c pid 358118
c Reading CNF formula...
c Computing output...
c ------------------------------------------------------------------
s wmc 0.3
c ------------------------------------------------------------------
c ==================================================================
c seconds 0.019
c ==================================================================
- Tabajara: RSynth
- Somenzi: CUDD package
- Rutenbar: CUDD tutorial
- Kebo: CUDD visualization
- Beck: cxxopts
- Kautz and Sang: Cachet
- Hecher and Fichte: Model Counting Competition