The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
I'm implementing a sudoku solver in prolog. I had a script that took around 6 seconds to solve a sudoku.
I improved my code and it solves everything instantaneously. I did this just by moving around some rules, but now gprolog (interpreter) won't print the running time. I haven't changed anything else, but the rules' order. Is there any way to print it or does gprolog have some sort of rule that it only prints if the running time is above some size?