Search found 6 matches

by Ben
Mon May 17, 2010 4:19 am
Forum: Common Lisp
Topic: Only in Lisp
Replies: 43
Views: 41772

Re: Only in Lisp

Well, i think we have forgotten one thing in our goal to 'convert' Gerenuk. :) In LISP it is very simple to debug your code. You can visit your code line by line, make changes on the values (if you want) or inspect symbols and go on. You have no overhead with debugging-tools or breakpoints and such ...
by Ben
Mon Jul 13, 2009 7:32 am
Forum: Common Lisp
Topic: time in Texas Hold'em
Replies: 6
Views: 9132

Re: time in Texas Hold'em

Maybe you want to investigate your program with a metering/profiling-tool to optimize your code.

You could try this for example.
by Ben
Thu Jul 09, 2009 6:19 am
Forum: Common Lisp
Topic: Different behavior between compiled and uncompiled code
Replies: 8
Views: 9007

Re: Different behavior between compiled and uncompiled code

Well, the application has about one thousand global variables, parameters and constants. ;)
by Ben
Wed Jul 08, 2009 6:55 am
Forum: Common Lisp
Topic: Different behavior between compiled and uncompiled code
Replies: 8
Views: 9007

Re: Different behavior between compiled and uncompiled code

First of all, Thanks for all the answers. Well, i have to investigate possibilities how a linear non-thread-based application can be used in a multi-thread or multi-processor environment. The application itself is not parallelized, but it should be possible that two or more instances of the applicat...
by Ben
Fri Jul 03, 2009 3:13 am
Forum: Common Lisp
Topic: Different behavior between compiled and uncompiled code
Replies: 8
Views: 9007

Re: Different behavior between compiled and uncompiled code

Well, i use LispWorks. In my sourcecode no in-package-calls are contained. The common use of packages is to make functions and symbols 'visible' and usable, but in my case that is not enough unfortunately. If i load uncompiled code into two different packages, i got two copies of the symbols, which ...
by Ben
Thu Jul 02, 2009 2:41 am
Forum: Common Lisp
Topic: Different behavior between compiled and uncompiled code
Replies: 8
Views: 9007

Different behavior between compiled and uncompiled code

Hello, is it possible that loading a compiled file exhibits the same behavior as loading its source file? I experience diffent behavior if i use custom packages. In the compiled file the package informations during compile-time is contained. If during load-time i have a different package as in compi...