aboutsummaryrefslogtreecommitdiffstats
path: root/libnormalform_get_relationship__.c
blob: baad786d86a97f2459e4adac64b8ebc7cdd62471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


int
(libnormalform_get_relationship__)(struct expression *left, struct expression *right, /* TODO */
                                   const struct libnormalform_analysers *analysers,
                                   enum libnormalform_sentence_relationship *relationship_out)
{
	(void) left;
	(void) right;
	(void) analysers;
	*relationship_out = LIBNORMALFORM_MUTUALLY_INDEPENDENT;
	return 0;
}


#else

TODO_TEST

#endif