rif wrote on Wed, Oct 16, 2002 at 06:10:05PM -0400: > > * (profile:profile get-model-framedists) > * (setf r (score-ann-file "../smallOut" "../smallId" 500 500 pmf snhash)) > > Type-error in KERNEL::OBJECT-NOT-TYPE-ERROR-HANDLER: > 4145112608 is not of type (UNSIGNED-BYTE 29)
That is the consing counter overflowing. In profile.lisp you can easily prevent it from being counted. This should do it (untested, I use a hacked up profiler): (defmacro profile::total-consing () 0) You must do this before instructing the system to profile functions (not before running them). Alternativly, cons less :) Martin
