Code Monkey home page Code Monkey logo

cnf-utils's Introduction

This package implements a number of tools that operate on DIMACS CNF files.

Here is a short summary of the tools and their usage:

 - cnf-cat [FILE] ...

	Concatenate the clauses of one or more CNF files.

 - cnf-clause [[LITERAL] ... 0] ...

	Generate a CNF file containing the clauses specified on the command
	line. Example:

	$ cnf-clause 1 2 0 -1 3 0
	p cnf 3 2
	1 2 0
	-1 3 0

 - cnf-grep VARIABLE [FILE]

	Read the CNF file specified by FILE (or standard input if omitted)
	and output the clauses containing the variable VARIABLE. Example:

	$ cnf-clause 1 2 0 -1 3 0 | cnf-grep 2
	p cnf 3 1
	1 2 0

 - cnf-pack [FILE]

	Read the CNF file specified by FILE (or standard input if omitted)
	and rename the variables so that they start at 1 and go to N, where
	N is the number of distinct variables in the input. Example:

	$ cnf-clause 100 101 0 | cnf-pack
	p cnf 2 1
	1 2 0

 - cnf-propagate [FILE]

	Read the CNF file specified by FILE (or standard input if omitted)
	and carry out unit propagation recursively until no further
	propagations can be made. Note that no clauses are removed; both
	unit clauses and tautologies (e.g. 1 -1 0) will remain in the output.
	Example:

	$ cnf-clause 1 2 0 -1 3 0 -3 0 | cnf-propagate 
	p cnf 3 3
	2 0
	-1 0
	-3 0

 - cnf-shuffle-clauses [FILE]

	Shuffle the order of the clauses, but leave the order of literals
	within each clause intact.

 - cnf-shuffle-literals [FILE]

	Shuffle the order of the literals within each clause, but leave the
	order of the clauses intact.

 - cnf-shuffle-variables [FILE]

	rENAME the variables randomly using a one-to-one mapping. The
	resulting CNF output is equisatisfiable with the CNF input.
	Example:

	$ cnf-clause 1 2 3 0 | cnf-shuffle-variables 
	p cnf 3 1
	2 3 1 0

 - cnf-sort-clauses [FILE]

	Order the clauses in ascending order. Example:

	$ cnf-clause 3 2 1 0 -3 -2 -1 0 | cnf-sort-clauses 
	p cnf 3 2
	-3 -2 -1 0
	3 2 1 0

 - cnf-sort-literals [FILE]

	Order the literals within each clause in ascending order. Example:

	$ cnf-clause 3 2 1 0 -3 -2 -1 0 | cnf-sort-literals 
	p cnf 3 2
	1 2 3 0
	-3 -2 -1 0

 - cnf-stat [FILE]

	Print some simple statistics about the CNF input. Example:

	$ cnf-stat 20-r-16-160-r-00-shuffle-1.cnf 
	Literals: 121157 (61952 negative, 59205 positive)
	Clause length histogram:
	 1: 1
	 2: 15608
	 3: 29980

cnf-utils's People

Contributors

vegard avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.