blob: 25c4d7cb6f657a8bf9630503edd1178691e210c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
struct libnormalform_term *
(libnormalform_express)(LIBNORMALFORM_SENTENCE *this, uint64_t flags, const struct libnormalform_analysers *analysers)
{
return libnormalform_express__(this, flags, analysers, NNF, NULL);
}
#else
TODO_TEST
#endif
|