Codebase list cafeobj / 251ddba
Add some inspecting codes for debug matching problems. tswd 8 years ago
2 changed file(s) with 6 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
389389
390390 ;;; x = term
391391 ;;; y = ((term . eqn-num) ... )
392 ;;; #||
392 #||
393393 (defun delete-one-term (x y)
394394 (block exit
395395 (if (null y)
437437 (return y))
438438 (setq last rest rest (cdr rest)))))))
439439 ))
440
441 #||
440 ||#
441
442442 (defun delete-one-term
443443 (x y)
444444 (if (null y)
455455 (setq last rest rest (cdr rest))))
456456 ))
457457 )
458 ||#
459458
460459 (defvar *ac-failure-eq* nil)
461460
5959 (type list sys)
6060 (values (or null t) (or null t)))
6161 (block no-match
62 (with-match-debug ()
63 (format t "~%[empty initialize]-----------~%")
64 (print-match-equations (m-system-to-list sys)))
6265 (dolist (equation (m-system-to-list sys))
6366 (let ((lhs (equation-t1 equation))
6467 (rhs (equation-t2 equation)))