I have running time 32 seconds for the whole test suite.
>>> Ja, wenn man bei n=7, i.e., 1044 Graphen mit 7 Knoten aufhört.
>> So that doesn't make me too happy. :-(
> 
> Maybe it is possible to speed things up.

Hmm, I have some suspicion... The functions "cycleType" as well as 
"cycleTypePower" have the code wrapped by one and two BugWorkaround 
macros respectively.

macro BugWorkaround(CONDITION)(CODE) == {
         assert(CONDITION);
         if CONDITION then CODE else never;
}

The condition is tested even two times. Actually, the compiler should 
know at compile time that the condition is true. Unfortunately, it is 
not yet smart enough.

However, I haven't really checked if that is the source of the speed 
problem. But it certainly is an eventually unnecessary runtime penalty.

Ralf


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Aldor-combinat-devel mailing list
Aldor-combinat-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aldor-combinat-devel

Reply via email to