-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How Can I turn off warnings in swi-prolog.
Clauses of XXX/AA are not together in the source-file
is very annoying.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
We are using swi-prolog to run our testcases. Whenever the test starts, I am opening the connection to MYSQL database and storing the Name of the Test hat is being done and then closing the DB. These tests run for about 2 days continuously. After the tests are done, the results basically gets stored…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What I need to do is to break atom to tokens. E. g.:
tokenize_string('Hello, World!', L).
would unify L=['Hello',',','World','!']. Exactly as tokenize_atom/2 do. But when I try to use tokenize_atom/2 with non-latin letters it fails. Is there any universal replacement or how I can write one? Thanks…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is there anyway to do it?
Thanks
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a C++ application (prog.sln) which is my main program and I want to use Prolog as an embedded logic server (hanoi.pl)
int main(int argc, char** argv)
{
putenv( "SWI_HOME_DIR=C:\\Program Files\\pl" );
argv[0] = "libpl.dll";
argv[1] = "-x";
argv[2] = "hanoi.pl";
argv[3]…
>>> More