Changeset 3615
- Timestamp:
- 07/24/08 13:42:29 (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
r3614 r3615 324 324 (return nil) 325 325 (let ((next (get-next-neighbor (peek-queue border-queue)))) 326 (cond 327 (next 328 (to-border-queue next)) 329 (t 330 (push (dequeue border-queue) completely-checked) 331 (go check-next))))))))))) 326 (unless next 327 (push (dequeue border-queue) completely-checked) 328 (go check-next)) 329 (to-border-queue next))))))))) 332 330 333 331 (defun allocate-in-area (area n)
