Thank you, Gary
Hello. I want to add a fact like this one - Mode 10 (assert (Mode (get_answer_from_udf_function))) How can do that?
Thank you, Gary
Hello. I'm trying to compile my small program #include "./CLIPS/clips.h" int main() { Environment *env = CreateEnvironment(); Load(env, "hello.clp"); Reset(env); Run(env, -1); DestroyEnvironment(env); return 0; } $ ls CLIPS libclips.a main.c main.cpp hello.clp When I'm using gcc everything good gcc -Wall -o main main.c -L. -lclips -lm When I'm using g++ I get errors g++ -Wall -o main main.c -L. -lclips -lm /usr/bin/ld: /tmp/ccXICXAv.o: in function main': main.c:(.text+0xd): undefined reference toCreateEnvironment()'...
Thank you, Gary
Hello. In CLIPSIDE.jar (random) function doesn't work, always return 41 number CLIPS (6.4.2 1/14/25) CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (seed 5555) CLIPS> (seed 5555) CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random) 41 CLIPS> (random 1 10) 2 CLIPS> (random 1 10) 2 CLIPS> (random 1 10) 2 CLIPS> (random 1 10) 2 CLIPS> (random 1 10) 2 CLIPS> In CLIPSJNI.jar (random) function...
Thank you