Skip to content

dfarnham/dnf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dnf

Lex/Yacc command line "Disjunctive Normal Form" tool

Information

Lex/Yacc command line "Disjunctive Normal Form" tool

Example

$ dnf
dnf: Quit with ^D
> (a || b) && (c || d)
(((c && a) || (d && a)) || ((c && b) || (d && b)))

> !(a || b) && (c || d)
((c && ((!a) && (!b))) || (d && ((!a) && (!b))))

About

Command line "Disjunctive Normal Form" tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published