diff options
Diffstat (limited to '')
| -rw-r--r-- | libnormalform_dnf.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libnormalform_dnf.c b/libnormalform_dnf.c new file mode 100644 index 0000000..79f1a3d --- /dev/null +++ b/libnormalform_dnf.c @@ -0,0 +1,17 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" +#ifndef TEST + + +struct libnormalform_term * +(libnormalform_dnf)(LIBNORMALFORM_SENTENCE *this, uint64_t flags, const struct libnormalform_analysers *analysers) +{ + return libnormalform_express__(this, flags | LIBNORMALFORM_RELAX_XOR, analysers, DNF, NULL); +} + + +#else + +TODO_TEST + +#endif |
