public static void startPlc(String args[])
Initialize the B-Prolog emulator, where args are parameter-value pairs given to B-Prolog. Possible parameter-value pairs include:
"-b" TRAIL : words allocated to the trail stack
"-s" STACK : words allocated to the local and the heap
"-p" PAREA : words allocated to the program code area
"-t" TABLE : words allocated to the table area
where TRAIL, STACK, PAREA and TABLE must all be strings of integers. After the B-Prolog emulator is initialized, it will be waiting for calls from Java. Initialization needs to be done only once. Further calls to startPlc have no effect at all.