File size: 36,694 Bytes
43203b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 | ;;;-*- Mode: Lisp; Package: metabang.graph -*-
#|
$Id: graph.lisp,v 1.30 2005/09/07 16:17:06 gwking Exp $
Author: Gary W. King, et. al.
|#
#| NOTES
something is putting something on the vertexes plist's
|#
(in-package #:metabang.graph)
;;; classes
(defcondition graph-error (error)
((graph nil ir))
(:export-p t)
(:export-slots-p t)
(:documentation "This is the root condition for errors that occur while running code in CL-Graph."))
(defcondition edge-error (graph-error)
((edge nil ir "The `edge` that is implicated in the condition."))
(:export-p t)
(:export-slots-p t)
(:documentation "This is the root condition for graph errors that have to do with edges."))
(defcondition graph-vertex-not-found-error (graph-error)
((vertex nil ir "The vertex or value that could not be found in the graph."))
(:report (lambda (c s)
(format s "Vertex ~S not found in ~A" (vertex c) (graph c))))
(:export-p t)
(:export-slots-p t)
(:documentation "This condition is signaled when a vertex can not be found in a graph."))
(defcondition graph-vertex-not-found-in-edge-error (edge-error)
((vertex nil ir))
(:report (lambda (c s)
(format s "Vertex ~S not found in ~A" (vertex c) (edge c))))
(:export-p t)
(:documentation "This condition is signaled when a vertex can not be found in an edge."))
(defcondition graph-edge-not-found-error (graph-error)
((vertex-1 nil ir "One of the vertexes for which no connecting edge could be found.")
(vertex-2 nil ir "One of the vertexes for which no connecting edge could be found."))
(:report (lambda (c s)
(format s "Edge between ~S and ~S not found in ~A"
(vertex-1 c) (vertex-2 c) (graph c))))
(:export-p t)
(:export-slots-p t)
(:documentation "This condition is signaled when an edge cannot be found in a graph."))
(defclass* basic-vertex (container-node-mixin)
((depth-level 0 ia :type number "`Depth-level` is used by some algorithms for bookkeeping. [?? Should be in a mixin]")
(vertex-id 0 ir "`Vertex-id` is used internally to keep track of vertexes.")
(element :unbound ia :accessor value "The `element` is the value that this vertex represents.")
(tag nil ia "The `tag` slot is used by some algorithms to keep track of which vertexes have been visited.")
(graph nil ia "The graph in which this vertex is contained.")
(color nil ia "The `color` slot is used by some algorithms for bookkeeping.")
(rank nil ia "The `rank` is used by some algorithms for bookkeeping. [?? Should be in a mixin]")
(previous-node nil ia "`Previous-node` is used by some algorithms for bookkeeping. [?? Should be in a mixin]")
(next-node nil ia "`Next-node` is used by some algorithms for bookkeeping. [?? Should be in a mixin]")
(discovery-time -1 ia "`Discovery-time` is used by some algorithms for bookkeeping. [?? Should be in a mixin]")
(finish-time -1 ia "`Finish-time` is used by some algorithms for bookkeeping. [?? Should be in a mixin]"))
(:export-p t)
(:export-slots vertex-id tag rank color previous-node next-node
discovery-time finish-time)
(:make-load-form-p t)
(:documentation "This is the root class for all vertexes in CL-Graph."))
(defmethod initialize-instance :after ((object basic-vertex) &key graph vertex-id)
(when (and graph (not vertex-id))
(setf (slot-value object 'vertex-id)
(largest-vertex-id graph))
(incf (slot-value graph 'largest-vertex-id))))
(defmethod print-object ((vertex basic-vertex) stream)
(print-unreadable-object (vertex stream :identity nil)
(format stream "~A"
(if (and (slot-exists-p vertex 'element) (slot-boundp vertex 'element))
(element vertex) "#unbound#"))))
(defclass* basic-edge ()
((edge-id 0 ia "The `edge-id` is used internally by CL-Graph for bookkeeping.")
(element nil ia :accessor value :initarg :value)
(tag nil ia "The `tag` is used by some algorithms for bookkeeping. [?? Should probably be in a mixin]")
(graph nil ir "The `graph` of which this edge is a part.")
(color nil ia "The `color` is used by some algorithms for bookkeeping. [?? Should probably be in a mixin]"))
(:export-p t)
(:export-slots edge-id element tag color)
(:make-load-form-p t)
(:documentation "This is the root class for all edges in CL-Graph."))
(defmethod initialize-instance :after ((object basic-edge) &key graph edge-id)
(when (and graph (not edge-id))
(setf (slot-value object 'edge-id)
(largest-edge-id graph))
(incf (slot-value graph 'largest-edge-id))))
(defmethod print-object ((object basic-edge) stream)
(print-unreadable-object (object stream :type t)
(format stream "<~A ~A>" (vertex-1 object) (vertex-2 object))))
(defclass* directed-edge-mixin ()
()
(:export-p t)
(:documentation "This mixin class is used to indicate that an edge is directed."))
(defclass* undirected-edge-mixin ()
()
(:export-p t)
(:documentation "This mixin class is used to indicate that an edge is undirected."))
(defclass* weighted-edge-mixin ()
((weight 1d0 ia "The value of the weight of this edge. Defaults to 1.0d0"))
:export-slots
(:export-p t)
(:documentation "This mixin class adds a `weight` slot to an edge."))
(defmethod weight ((edge basic-edge)) (values 1.0))
(defclass* basic-graph ()
((graph-vertexes :unbound ir)
(graph-edges :unbound ir)
(largest-vertex-id 0 r)
(largest-edge-id 0 r)
(vertex-class 'basic-vertex ir
"The class of the vertexes in the graph. This must extend the base-class for vertexes of the graph type. E.g., all vertexes of a graph-container must extend graph-container-vertex.")
(directed-edge-class 'basic-directed-edge ir
"The class used to create directed edges in the graph. This must extend the base-class for edges of the graph type and directed-edge-mixin. E.g., the directed-edge-class of a graph-container must extend graph-container-edge and directed-edge-mixin.")
(undirected-edge-class 'basic-undirected-edge ir
"The class used to create undirected edges in the graph. This must extend the base-class for edges of the graph type and undirected-edge-mixin. E.g., all undirected edges of a graph-container must extend graph-container-edge and undirected-edge-mixin.")
(contains-directed-edge-p nil ar
"Returns true if graph contains at least one directed edge. [?? Not sure if this is really kept up-to-date.]")
(contains-undirected-edge-p nil ar
"Returns true if graph contains at least one undirected edge. [?? Not sure if this is really kept up-to-date.]")
(vertex-test #'eq ir)
(vertex-key #'identity ir)
(edge-test #'eq ir)
(edge-key #'identity ir)
(default-edge-type nil ir
"The default edge type for the graph. This should be one of :undirected or :directed.")
(default-edge-class nil ir
"The default edge class for the graph."))
(:make-load-form-p t)
(:export-slots vertex-class directed-edge-class undirected-edge-class
default-edge-type default-edge-class)
(:default-initargs
:initial-size 25)
(:documentation "This is the root class for all graphs in CL-Graph."))
(defmethod initialize-instance :after ((object basic-graph) &key initial-size
&allow-other-keys)
(setf (slot-value object 'graph-vertexes)
(make-vertex-container object initial-size))
(setf (slot-value object 'graph-edges)
(make-edge-container object initial-size)))
(defmethod print-object ((graph basic-graph) stream)
(print-unreadable-object (graph stream :type t :identity t)
(format stream "[~A,~A]" (size graph) (edge-count graph))))
;;; internals
(defmethod add-vertex
((graph basic-graph) (value basic-vertex) &key if-duplicate-do)
(declare (ignore if-duplicate-do))
(values value))
(defmethod make-vertex-for-graph ((graph basic-graph) &rest args &key
(vertex-class (vertex-class graph))
&allow-other-keys)
(remf args :vertex-class)
(assert (subtypep vertex-class (vertex-class graph)) nil
"Vertex class '~A' must be a subtype of ~A" vertex-class (vertex-class graph))
(apply #'make-instance vertex-class :graph graph args))
(defmethod make-edge-for-graph ((graph basic-graph)
(vertex-1 basic-vertex) (vertex-2 basic-vertex)
&rest args &key
(edge-type (default-edge-type graph))
(edge-class (default-edge-class graph))
&allow-other-keys)
(remf args :edge-class)
(remf args :edge-type)
(assert (or (null edge-type)
(eq edge-type :directed)
(eq edge-type :undirected)) nil
"Edge-type must be nil, :directed or :undirected.")
(assert (or (null edge-class)
(subtypep edge-class (directed-edge-class graph))
(subtypep edge-class (undirected-edge-class graph))) nil
"Edge-class must be nil or a subtype of ~A or ~A"
(undirected-edge-class graph)
(directed-edge-class graph))
(apply #'make-instance
(or edge-class
(ecase edge-type
(:directed (directed-edge-class graph))
(:undirected (undirected-edge-class graph))
((nil) nil))
(undirected-edge-class graph))
:graph graph
:vertex-1 vertex-1 :vertex-2 vertex-2 args))
(defmethod make-graph ((graph-type symbol) &rest args &key &allow-other-keys)
(apply #'make-instance graph-type args))
;;; generic implementation
(defmethod undirected-edge-p ((edge basic-edge))
(not (directed-edge-p edge)))
(defmethod directed-edge-p ((edge basic-edge))
(typep edge 'directed-edge-mixin))
(defmethod tagged-edge-p ((edge basic-edge))
(tag edge))
(defmethod untagged-edge-p ((edge basic-edge))
(null (tag edge)))
(defmethod tag-all-edges ((graph basic-graph))
(iterate-edges
graph
(lambda (e)
(setf (tag e) t))))
(defmethod tag-all-edges ((vertex basic-vertex))
(iterate-edges
vertex
(lambda (e)
(setf (tag e) t))))
(defmethod untag-all-edges ((graph basic-graph))
(iterate-edges
graph
(lambda (e)
(setf (tag e) nil))))
(defmethod untag-all-edges ((vertex basic-vertex))
(iterate-edges
vertex
(lambda (e)
(setf (tag e) nil))))
(defmethod untag-edges ((edges list))
(iterate-nodes
edges
(lambda (e)
(setf (tag e) nil))))
(defmethod tag-edges ((edges list))
(iterate-nodes
edges
(lambda (e)
(setf (tag e) t))))
(defmethod (setf element) :around ((value t) (vertex basic-vertex))
(with-changing-vertex (vertex)
(call-next-method)))
;; :ignore, :force, :replace, <function>
(defmethod add-vertex ((graph basic-graph) (value t) &rest args &key
(if-duplicate-do :ignore) &allow-other-keys)
(remf args :if-duplicate-do)
(let ((existing-vertex (find-vertex graph value nil)))
(labels ((make-it ()
(apply #'make-vertex-for-graph graph :element value args))
(add-it (why)
(values (add-vertex graph (make-it)) why)))
(if existing-vertex
(cond ((eq if-duplicate-do :ignore)
(values existing-vertex :ignore))
((eq if-duplicate-do :force)
(add-it :force))
((eq if-duplicate-do :replace)
(replace-vertex graph existing-vertex (make-it)))
((eq if-duplicate-do :replace-value)
(setf (element existing-vertex) value)
(values existing-vertex :replace-value))
((eq if-duplicate-do :error)
(error "Attempting to insert a duplicate node in graph ~a" graph))
(t
(values (funcall if-duplicate-do existing-vertex)
:duplicate)))
;; not found, add
(add-it :new)))))
(defmethod replace-vertex ((graph basic-graph) (old basic-vertex) (new basic-vertex))
;; we need the graph and the new vertex to reference each other
;; we need every edge of the old vertex to use the new-vertex
;; we need the edge list of the old vertex to be emptied
;; we need to remove the old vertex
;; first, we connect the edges incident to the old vertex to the new
;; vertex
(iterate-edges
old
(lambda (e)
(if (eq (vertex-1 e) old)
(setf (slot-value e 'vertex-1) new)
(setf (slot-value e 'vertex-2) new))
(add-edge-to-vertex e new)))
;; next, *we must remove all edges from the old vertex* so they
;; don't also get deleted when we delete the old vertex
(empty! (vertex-edges old))
;; then, we delete the old vertex from the graph
(delete-vertex graph old)
;; finally, we add the new vertex to the graph
(add-vertex graph new))
(defmethod add-edge-between-vertexes ((graph basic-graph) (value-1 t) (value-2 t)
&rest args &key (if-duplicate-do :ignore)
&allow-other-keys)
(declare (ignore if-duplicate-do)
(dynamic-extent args))
(let ((v1 (or (find-vertex graph value-1 nil)
(add-vertex graph value-1 :if-duplicate-do :ignore)))
(v2 (or (find-vertex graph value-2 nil)
(add-vertex graph value-2 :if-duplicate-do :replace))))
(apply #'add-edge-between-vertexes graph v1 v2 args)))
;;; to-do - add-edge-between-vertexes needs to be able to grab the weight and
;;; color from edges that inherit from weight and color mixins
(defmethod add-edge-between-vertexes ((graph basic-graph)
(v-1 basic-vertex) (v-2 basic-vertex)
&rest args
&key (value nil) (if-duplicate-do :ignore)
(edge-type (default-edge-type graph))
(edge-class (default-edge-class graph))
&allow-other-keys)
(declare (dynamic-extent args))
(remf args :if-duplicate-do)
; Here, check if we know the edge-type/edge-class, and handle the
; graph-edge-not-found-error for non-directed edges in such a way that
; _both_ orderings of endvertices are checked. There are three ways
; to avoid checking both orderings: First, make the graph use directed
; edges by default; second, specify the edge-type as :directed; third,
; specify an edge-class that is a directed-edge-mixin.
(let ((edge (handler-case (find-edge-between-vertexes graph v-1 v-2 :error-if-not-found? t)
(graph-edge-not-found-error (enf)
(when (or
; avoid by using directed edges by default
(not (subtypep (default-edge-class graph) 'directed-edge-mixin))
; avoid with :directed edge-type specified
(and (not (null edge-type))
(not (eq edge-type :directed)))
; avoid with a specified directed edge-class
(and (not (null edge-class))
(not (subtypep edge-class 'directed-edge-mixin))))
(find-edge-between-vertexes graph v-2 v-1 :error-if-not-found? nil))))))
(flet ((add-it (why)
(values (add-edge ; method must be specialized for impl of basic-graph
graph
(apply #'make-edge-for-graph graph v-1 v-2 args))
why)))
(if edge
(cond
((eq if-duplicate-do :ignore)
(values edge :ignore))
((eq if-duplicate-do :force)
(add-it :force))
((eq if-duplicate-do :force-if-different-value)
(if (equal (value edge) value)
(values :ignore)
(add-it :force)))
((eq if-duplicate-do :replace)
(warn "replace edges isn't really implemented, maybe you can use :replace-value")
(delete-edge graph edge)
(add-it :replace))
((eq if-duplicate-do :replace-value)
(setf (element edge) value)
(values edge :replace-value))
(t
(setf edge (funcall if-duplicate-do edge))
(values edge :duplicate)))
;; not found, add
(add-it :new)))))
;; There is never intended to be an instance of basic-edge or
;; basic-vertex directly, only subclasses. This method is a
;; placeholder to suggest that.
(defmethod add-edge-to-vertex ((edge basic-edge) (vertex basic-vertex))
(values))
;; Implementations of basic-graph must specialize this method for args
;; ((graph basic-graph) (value-1 basic-vertex) (value-2 basic-vertex))
(defmethod find-edge-between-vertexes
((graph basic-graph) (value-1 t) (value-2 t)
&key (error-if-not-found? t))
(let* ((v1 (find-vertex graph value-1 error-if-not-found?))
(v2 (find-vertex graph value-2 error-if-not-found?)))
(or (and v1 v2 (find-edge-between-vertexes graph v1 v2))
(when error-if-not-found?
(error 'graph-edge-not-found-error
:graph graph :vertex-1 v1 :vertex-2 v2)))))
(defmethod delete-edge-between-vertexes ((graph basic-graph)
(value-or-vertex-1 t)
(value-or-vertex-2 t) &rest args)
(let ((edge (apply #'find-edge-between-vertexes
graph value-or-vertex-1 value-or-vertex-2 args)))
(when edge
(delete-edge graph edge))))
(defmethod delete-edge :after ((graph basic-graph) (edge basic-edge))
(delete-item (graph-edges graph) edge)
edge)
(defmethod delete-all-edges :after ((graph basic-graph))
(empty! (graph-edges graph))
graph)
(defmethod delete-vertex ((graph basic-graph) value-or-vertex)
(delete-vertex graph (find-vertex graph value-or-vertex)))
(defmethod delete-vertex ((graph basic-graph) (vertex basic-vertex))
(unless (eq graph (graph vertex))
(error 'graph-vertex-not-found-error
:graph graph :vertex vertex))
(iterate-edges
vertex
(lambda (edge)
(delete-edge graph edge)))
(empty! (vertex-edges vertex))
(values vertex graph))
(defmethod delete-vertex :after ((graph basic-graph)
(vertex basic-vertex))
(setf (slot-value vertex 'graph) nil)
(delete-item-at (graph-vertexes graph)
(funcall (vertex-key graph) (element vertex))))
(defmethod insert-item ((graph basic-graph) value)
(add-vertex graph value))
(defmethod source-edges ((vertex basic-vertex) &optional filter)
(collect-using #'iterate-source-edges filter vertex))
(defmethod target-edges ((vertex basic-vertex) &optional filter)
(collect-using #'iterate-target-edges filter vertex))
(defmethod child-vertexes (vertex &optional filter)
(collect-using #'iterate-children filter vertex))
(defmethod parent-vertexes (vertex &optional filter)
(collect-using #'iterate-parents filter vertex))
(defmethod neighbor-vertexes (vertex &optional filter)
(collect-using #'iterate-neighbors filter vertex))
(defmethod adjacentp ((graph basic-graph) vertex-1 vertex-2)
(adjacentp graph (find-vertex graph vertex-1) (find-vertex graph vertex-2)))
(defmethod adjacentp ((graph basic-graph) (vertex-1 basic-vertex) (vertex-2 basic-vertex))
(iterate-neighbors
vertex-1
(lambda (vertex)
(when (eq vertex vertex-2)
(return-from adjacentp t))))
(values nil))
(defmethod number-of-neighbors (vertex)
(count-using #'iterate-neighbors nil vertex))
(defmethod in-cycle-p ((graph basic-graph) (vertex t))
(in-cycle-p graph (find-vertex graph vertex)))
(defmethod renumber-vertexes ((graph basic-graph))
(let ((count 0))
(iterate-vertexes graph (lambda (vertex)
(setf (slot-value vertex 'vertex-id) count)
(incf count)))
(setf (slot-value graph 'largest-vertex-id) count)))
(defmethod renumber-edges ((graph basic-graph))
(let ((count 0))
(iterate-edges graph (lambda (vertex)
(setf (slot-value vertex 'edge-id) count)
(incf count)))
(setf (slot-value graph 'largest-edge-id) count)))
(deprecated
(defmethod container->list ((graph basic-graph))
(collect-elements (graph-vertexes graph))))
(defmethod add-vertex :before ((graph basic-graph) (vertex basic-vertex)
&key &allow-other-keys)
(assert (typep vertex (vertex-class graph)))
(setf (item-at (graph-vertexes graph)
(funcall (vertex-key graph) (element vertex))) vertex
(slot-value vertex 'graph) graph))
(defmethod add-edge :before ((graph basic-graph) (edge basic-edge) &key force-new?)
(declare (ignore force-new?))
(insert-item (graph-edges graph) edge)
(setf (slot-value edge 'graph) graph)
(if (subtypep (class-name (class-of edge)) 'directed-edge-mixin)
(progn (setf (contains-directed-edge-p graph) t))
(progn (setf (contains-undirected-edge-p graph) t))))
(defmethod find-vertex ((graph basic-graph) (value t)
&optional (error-if-not-found? t))
(or (find-item (graph-vertexes graph) (funcall (vertex-key graph) value))
(when error-if-not-found?
(error 'graph-vertex-not-found-error :vertex value :graph graph))))
(defmethod find-vertex ((graph basic-graph) (vertex basic-vertex)
&optional (error-if-not-found? t))
(cond ((eq graph (graph vertex))
vertex)
(t
(when error-if-not-found?
(error 'graph-vertex-not-found-error
:vertex vertex :graph graph)))))
(defmethod find-vertex ((edge basic-edge) (value t)
&optional (error-if-not-found? t))
(iterate-vertexes
edge
(lambda (vertex)
(when (funcall (vertex-test (graph edge))
(funcall (vertex-key (graph edge)) (element vertex)) value)
(return-from find-vertex vertex))))
(when error-if-not-found?
(error 'graph-vertex-not-found-in-edge-error :vertex value :edge edge)))
(defmethod search-for-vertex ((graph basic-graph) (vertex basic-vertex)
&key (key (vertex-key graph)) (test 'equal)
(error-if-not-found? t))
(or (search-for-node (graph-vertexes graph) vertex :test test :key key)
(when error-if-not-found?
(error "~A not found in ~A" vertex graph))))
(defmethod search-for-vertex ((graph basic-graph) (vertex t)
&key (key (vertex-key graph)) (test 'equal)
(error-if-not-found? t))
(or (search-for-element (graph-vertexes graph) vertex :test test :key key)
(when error-if-not-found?
(error "~A not found in ~A" vertex graph))))
(defmethod iterate-elements ((graph basic-graph) fn)
(iterate-elements (graph-vertexes graph)
(lambda (vertex) (funcall fn (element vertex)))))
(defmethod iterate-nodes ((graph basic-graph) fn)
(iterate-nodes (graph-vertexes graph) fn))
(defmethod iterate-vertexes ((graph basic-graph) fn)
(iterate-nodes (graph-vertexes graph) fn))
(defmethod iterate-vertexes ((edge basic-edge) fn)
(funcall fn (vertex-1 edge))
(funcall fn (vertex-2 edge)))
(defmethod size ((graph basic-graph))
(size (graph-vertexes graph)))
(defmethod edges ((graph basic-graph))
(collect-using #'iterate-edges nil graph))
(defmethod edges ((vertex basic-vertex))
(collect-using #'iterate-edges nil vertex))
(deprecated
"Use size instead"
(defmethod vertex-count ((graph basic-graph))
(size graph)))
(defmethod vertexes ((graph basic-graph))
(collect-elements (graph-vertexes graph)))
(defmethod source-edge-count ((vertex basic-vertex))
(count-using 'iterate-source-edges nil vertex))
(defmethod target-edge-count ((vertex basic-vertex))
(count-using 'iterate-target-edges nil vertex))
(defmethod graph-roots ((graph basic-graph))
(collect-elements (graph-vertexes graph) :filter #'rootp))
(defmethod rootp ((vertex basic-vertex))
;;?? this is inefficient in the same way that (zerop (length <list>)) is...
(zerop (target-edge-count vertex)))
(defmethod find-vertex-if ((graph basic-graph) fn &key key)
(iterate-vertexes graph
(lambda (v)
(when (funcall fn (if key (funcall key v) v))
(return-from find-vertex-if v))))
(values nil))
(defmethod find-vertex-if ((edge basic-edge) fn &key key)
(iterate-vertexes edge
(lambda (v)
(when (funcall fn (if key (funcall key v) v))
(return-from find-vertex-if v))))
(values nil))
(defmethod find-edge-if ((graph basic-graph) fn &key key)
(iterate-edges graph
(lambda (e)
(when (funcall fn (if key (funcall key e) e))
(return-from find-edge-if e))))
(values nil))
(defmethod find-edges-if ((graph basic-graph) fn)
(collect-using 'iterate-edges fn graph))
(defmethod find-vertexes-if ((graph basic-graph) fn)
(collect-using 'iterate-vertexes fn graph))
(defmethod empty! ((graph basic-graph))
(empty! (graph-edges graph))
(empty! (graph-vertexes graph))
(renumber-edges graph)
(renumber-vertexes graph)
(values))
(defun neighbors-to-children (new-graph root &optional visited-list)
(pushnew root visited-list)
(iterate-neighbors
root
(lambda (c)
(when (not (member c visited-list))
(add-edge-between-vertexes
new-graph (value root) (value c) :edge-type :directed)
(neighbors-to-children new-graph c visited-list)))))
(defmethod generate-directed-free-tree ((graph basic-graph) root)
(generate-directed-free-tree graph (find-vertex graph root)))
(defmethod force-undirected ((graph basic-graph))
(iterate-edges
graph
(lambda (edge)
(change-class edge (undirected-edge-class graph)))))
;;; traversal
(defmethod traverse-elements ((thing basic-graph) (style symbol) fn)
(let ((marker (gensym)))
(iterate-vertexes
thing
(lambda (vertex)
(setf (tag vertex) marker)))
(iterate-elements
(graph-roots thing)
(lambda (vertex)
(traverse-elements-helper vertex style marker fn)))))
(defmethod traverse-elements-helper ((thing basic-vertex) (style (eql :depth)) marker fn)
(when (eq (tag thing) marker)
(setf (tag thing) nil)
(iterate-children
thing
(lambda (vertex)
(traverse-elements-helper vertex style marker fn)))
(funcall fn thing)))
(defmethod traverse-elements-helper ((thing basic-vertex) (style (eql :breadth)) marker fn)
(when (eq (tag thing) marker)
(setf (tag thing) nil)
(funcall fn thing))
(iterate-neighbors
thing
(lambda (vertex)
(when (eq (tag vertex) marker)
(funcall fn vertex))))
(iterate-neighbors
thing
(lambda (vertex)
(when (eq (tag vertex) marker)
(setf (tag vertex) nil)
(traverse-elements-helper vertex style marker fn)))))
;; also in metatilites
(defun graph-search-for-cl-graph (states goal-p successors combiner
&key (state= #'eql) old-states
(new-state-fn (error "argument required")))
"Find a state that satisfies goal-p. Start with states,
and search according to successors and combiner.
Don't try the same state twice."
(cond ((null states) nil)
((funcall goal-p (first states)) (first states))
(t (graph-search-for-cl-graph
(funcall
combiner
(funcall new-state-fn states successors state= old-states)
(rest states))
goal-p successors combiner
:state= state=
:old-states (adjoin (first states) old-states
:test state=)
:new-state-fn new-state-fn))))
(defmethod in-cycle-p ((graph basic-graph) (start-vertex basic-vertex))
(let ((first-time? t))
(not (null
(graph-search-for-cl-graph
(list start-vertex)
(lambda (v)
(if first-time?
(setf first-time? nil)
(eq (find-vertex graph v) start-vertex)))
(lambda (v)
(child-vertexes v))
#'append
:new-state-fn
(lambda (states successors state= old-states)
;; Generate successor states that have not been seen before but
;; don't remove the start state.
(remove-if
#'(lambda (state)
(and (not (eq start-vertex state))
(or (member state states :test state=)
(member state old-states :test state=))))
(funcall successors (first states)))))))))
(defmethod in-undirected-cycle-p
((graph basic-graph) (current basic-vertex)
&optional (marked (make-container 'simple-associative-container))
(previous nil))
(block do-it
(setf (item-at-1 marked current) t)
(iterate-children current
(lambda (child)
(cond
((eq child previous) nil)
((item-at-1 marked child) (return-from do-it t))
(t
(in-undirected-cycle-p graph child marked current)))))))
(defmethod any-undirected-cycle-p ((graph basic-graph))
(let ((marked (make-container 'simple-associative-container)))
(iterate-vertexes graph (lambda (v)
(unless (item-at-1 marked v)
(when (in-undirected-cycle-p graph v marked)
(return-from any-undirected-cycle-p v)))))
(values nil)))
(defun remove-list (original target)
"Removes all elements in original from target."
(remove-if (lambda (target-element)
(member target-element original))
target))
(defun get-nodelist-relatives (node-list)
"Collects set of unique relatives of nodes in node-list."
(let ((unique-relatives nil))
(dolist (node node-list)
(setf unique-relatives
(append-unique (neighbor-vertexes node) unique-relatives)))
unique-relatives))
(defun get-transitive-closure (vertex-list &optional (depth nil))
"Given a list of vertices, returns a combined list of all of the nodes
in the transitive closure(s) of each of the vertices in the list
(without duplicates). Optional DEPTH limits the depth (in _both_ the
child and parent directions) to which the closure is gathered; default
nil gathers the entire closure(s)."
(labels ((collect-transitive-closure (remaining visited depth)
(if (and remaining
(typecase depth
(null t)
(fixnum (>= (decf depth) 0))))
(let* ((non-visited-relatives ;; list of relatives not yet visited
(remove-list visited
(get-nodelist-relatives remaining)))
(visited-nodes ;; list of nodes visited so far
(append-unique non-visited-relatives visited)))
(collect-transitive-closure non-visited-relatives
visited-nodes
depth))
(values visited))))
(collect-transitive-closure vertex-list vertex-list depth)))
(defmethod edge-count ((graph basic-graph))
(count-using #'iterate-edges nil graph))
(defmethod edge-count ((vertex basic-vertex))
(size (vertex-edges vertex)))
(defmethod topological-sort ((graph basic-graph))
(assign-level graph 0)
(sort (collect-elements (graph-vertexes graph)) #'<
:key (lambda (x) (depth-level x))))
(defmethod assign-level ((graph basic-graph) (level number))
(loop for node in (graph-roots graph)
do (assign-level node 0)))
(defmethod assign-level ((node basic-vertex) (level number))
(if (or (not (depth-level node))
(> level (depth-level node)))
(setf (depth-level node) level))
(iterate-children node (lambda (x) (assign-level x (1+ level)))))
(defmethod depth ((graph basic-graph))
(assign-level graph 0)
(let ((depth 0))
(iterate-vertexes graph (lambda (vertex)
(when (> (depth-level vertex) depth)
(setf depth (depth-level vertex)))))
depth))
;;; mapping
(defun map-paths (graph start-vertex length fn &key (filter (constantly t)))
"Apply fn to each path that starts at start-vertex and is of exactly length
length"
;; a sort of depth first search
(labels ((follow-path (next-vertex current-path length)
(when (zerop length)
(funcall fn (reverse current-path)))
; (format t "~%~A ~A ~A" current-path next-vertex length)
(when (plusp length)
(iterate-neighbors
next-vertex
(lambda (v)
(when (funcall filter v)
;; no repeats
(unless (find-item current-path v)
(let ((new-path (copy-list current-path)))
(follow-path v (push v new-path) (1- length))))))))))
(iterate-neighbors
start-vertex
(lambda (v)
(when (funcall filter v)
(follow-path v (list v start-vertex) (1- length))))))
(values graph))
(defun map-shortest-paths
(graph start-vertex depth fn &key (filter (constantly t)))
"Apply fn to each shortest path starting at `start-vertex` of depth `depth`. The `filter` predicate is used to remove vertexes from consideration."
(let ((visited (make-container 'simple-associative-container
:test #'equal)))
(labels ((visit (p)
(setf (item-at-1 visited p) t))
(visited-p (p)
(item-at-1 visited p))
)
(loop for n from 1 to (1- depth) do
(map-paths graph start-vertex n
(lambda (p)
(visit (first (last p))))
:filter filter))
;(break)
(visit start-vertex)
(map-paths graph start-vertex depth
(lambda (p)
(unless (visited-p (first (last p)))
(funcall fn p)))
:filter filter))))
;;; utilities
(defun append-unique (list1 list2)
(remove-duplicates (append list1 list2)))
;;; project-bipartite-graph
(defmethod project-bipartite-graph
((new-graph symbol) graph vertex-class vertex-classifier)
(project-bipartite-graph
(make-instance new-graph) graph vertex-class vertex-classifier))
(defmethod project-bipartite-graph
((new-graph basic-graph) graph vertex-class vertex-classifier)
(iterate-vertexes
graph
(lambda (v)
(when (eq (funcall vertex-classifier v) vertex-class)
(add-vertex new-graph (element v)))))
(iterate-vertexes
graph
(lambda (v)
(when (eq (funcall vertex-classifier v) vertex-class)
(iterate-neighbors
v
(lambda (other-class-vertex)
(iterate-neighbors
other-class-vertex
(lambda (this-class-vertex)
(when (< (vertex-id v) (vertex-id this-class-vertex))
(add-edge-between-vertexes
new-graph (element v) (element this-class-vertex)
:if-duplicate-do (lambda (e) (incf (weight e))))))))))))
new-graph)
#+Test
(pro:with-profiling
(setf (ds :g-5000-m-projection)
(project-bipartite-graph
'undirected-graph-container
(ds :g-5000)
:m
(lambda (v)
(let ((vertex-class (aref (symbol-name (element v)) 0)))
(cond ((member vertex-class '(#\a #\b) :test #'char-equal)
:m)
((member vertex-class '(#\x #\y #\z) :test #'char-equal)
:h)))))))
#+Test
(pro:with-profiling
(setf (ds :g-5000-h-projection)
(project-bipartite-graph
'undirected-graph-container
(ds :g-5000)
:h
(lambda (v)
(let ((vertex-class (aref (symbol-name (element v)) 0)))
(cond ((member vertex-class '(#\a #\b) :test #'char-equal)
:m)
((member vertex-class '(#\x #\y #\z) :test #'char-equal)
:h)))))))
#+Test
(pro:with-profiling
(project-bipartite-graph
'undirected-graph-container
(ds :g-1000)
:m
(lambda (v)
(let ((vertex-class (aref (symbol-name (element v)) 0)))
(cond ((member vertex-class '(#\x #\y) :test #'char-equal)
:m)
((member vertex-class '(#\a #\b #\c) :test #'char-equal)
:h))))))
|