Changeset 3612
- Timestamp:
- 07/24/08 13:37:33 (4 months ago)
- Files:
-
- trunk/projects/bos/m2/allocation.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/projects/bos/m2/allocation.lisp
r3610 r3612 293 293 (defun search-adjacent (n m2 pred) 294 294 "Try to find N free square meters that are adjacent and that begin 295 at square meter M2. PRED is a predicate function of two argumentsthat296 returns a true value if the argument s specify the coordinates of an297 allocatable squaremeter."295 at square meter M2. PRED is a predicate function of one argument that 296 returns a true value if the argument specifies an allocatable square 297 meter." 298 298 (when (funcall pred m2) 299 299 (let* ((allocated (make-hash-table :test #'eq))
