The mnas-graph Reference Manual

This is the mnas-graph Reference Manual, version 0.1.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 17:21:49 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 mnas-graph

System mnas-graph defines basic functions for creating a graph data structure and displaying it via graphviz.

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Version

0.1.0

Dependencies
Source

mnas-graph.asd.


2.2 mnas-graph/core

Describe mnas-graph here

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Dependencies
  • mnas-hash-table (system).
  • mnas-string (system).
Source

mnas-graph.asd.

Child Component

src/core (module).


2.3 mnas-graph/alg

@b(Описание:) система @b(mnas-graph/alg)
содержит методы реализующие некоторые алгоритмы на графах.

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Dependencies
  • mnas-graph/core (system).
  • mnas-hash-table (system).
  • mnas-string (system).
Source

mnas-graph.asd.

Child Component

src/alg (module).


2.4 mnas-graph/view

Describe mnas-graph here

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Dependencies
Source

mnas-graph.asd.

Child Component

src/view (module).


2.5 mnas-graph/printer-viewer

Describe mnas-graph here

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Source

mnas-graph.asd.

Child Component

src/printer-viewer (module).


2.6 mnas-graph/filter

Describe mnas-graph here

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Source

mnas-graph.asd.

Child Component

src/filter (module).


2.7 mnas-graph/demos

Тестирование систем, входящих в проект mnas-graph

Author

Mykola Matvyeyev <>

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 or later

Dependencies
Source

mnas-graph.asd.

Child Component

src/demos (module).


3 Modules

Modules are listed depth-first from the system components tree.


3.1 mnas-graph/core/src/core

Source

mnas-graph.asd.

Parent Component

mnas-graph/core (system).

Child Components

3.2 mnas-graph/core/src/core/generics

Dependency

mnas-graph.lisp (file).

Source

mnas-graph.asd.

Parent Component

src/core (module).

Child Component

generics.lisp (file).


3.3 mnas-graph/core/src/core/classes

Dependency

mnas-graph.lisp (file).

Source

mnas-graph.asd.

Parent Component

src/core (module).

Child Components

3.4 mnas-graph/core/src/core/methods

Dependencies
Source

mnas-graph.asd.

Parent Component

src/core (module).

Child Components

3.5 mnas-graph/alg/src/alg

Source

mnas-graph.asd.

Parent Component

mnas-graph/alg (system).

Child Component

alg.lisp (file).


3.6 mnas-graph/view/src/view

Source

mnas-graph.asd.

Parent Component

mnas-graph/view (system).

Child Component

view.lisp (file).


3.7 mnas-graph/printer-viewer/src/printer-viewer

Source

mnas-graph.asd.

Parent Component

mnas-graph/printer-viewer (system).

Child Component

printer-viewer.lisp (file).


3.8 mnas-graph/filter/src/filter

Source

mnas-graph.asd.

Parent Component

mnas-graph/filter (system).

Child Component

filter.lisp (file).


3.9 mnas-graph/demos/src/demos

Source

mnas-graph.asd.

Parent Component

mnas-graph/demos (system).

Child Component

demos.lisp (file).


4 Files

Files are sorted by type and then listed depth-first from the systems components trees.


4.1 Lisp


4.1.2 mnas-graph/core/src/core/mnas-graph.lisp

Source

mnas-graph.asd.

Parent Component

src/core (module).

Packages

mnas-graph.

Public Interface
Internals

*graphviz.org* (special variable).


4.1.3 mnas-graph/core/src/core/generics/generics.lisp

Source

mnas-graph.asd.

Parent Component

generics (module).

Public Interface

4.1.4 mnas-graph/core/src/core/classes/attributes.lisp

Source

mnas-graph.asd.

Parent Component

classes (module).

Public Interface
Internals

4.1.5 mnas-graph/core/src/core/classes/node.lisp

Dependency

attributes.lisp (file).

Source

mnas-graph.asd.

Parent Component

classes (module).

Public Interface
Internals

4.1.6 mnas-graph/core/src/core/classes/edge.lisp

Dependency

attributes.lisp (file).

Source

mnas-graph.asd.

Parent Component

classes (module).

Public Interface

4.1.7 mnas-graph/core/src/core/classes/graph.lisp

Dependencies
Source

mnas-graph.asd.

Parent Component

classes (module).

Public Interface
Internals

4.1.8 mnas-graph/core/src/core/methods/into-container-p.lisp

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.9 mnas-graph/core/src/core/methods/clear.lisp

Dependency

into-container-p.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.10 mnas-graph/core/src/core/methods/count-edges.lisp

Dependency

clear.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

count-edges (method).


4.1.11 mnas-graph/core/src/core/methods/count-nodes.lisp

Dependency

count-edges.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

count-nodes (method).


4.1.12 mnas-graph/core/src/core/methods/find-edge.lisp

Dependency

count-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

find-edge (method).


4.1.13 mnas-graph/core/src/core/methods/find-node.lisp

Dependency

find-edge.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

find-node (method).


4.1.14 mnas-graph/core/src/core/methods/both-edges.lisp

Dependency

find-node.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.15 mnas-graph/core/src/core/methods/inlet-edges.lisp

Dependency

both-edges.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.16 mnas-graph/core/src/core/methods/outlet-edges.lisp

Dependency

inlet-edges.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.17 mnas-graph/core/src/core/methods/insert-to.lisp

Dependency

outlet-edges.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.18 mnas-graph/core/src/core/methods/remove-from.lisp

Dependency

insert-to.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.19 mnas-graph/core/src/core/methods/to-string.lisp

Dependency

remove-from.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.20 mnas-graph/core/src/core/methods/name.lisp

Dependency

to-string.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

name (method).


4.1.21 mnas-graph/core/src/core/methods/ids.lisp

Dependency

name.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.22 mnas-graph/core/src/core/methods/edge-names.lisp

Dependency

ids.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

edge-names (method).


4.1.23 mnas-graph/core/src/core/methods/node-names.lisp

Dependency

edge-names.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

node-names (method).


4.1.24 mnas-graph/core/src/core/methods/inlet-nodes.lisp

Dependency

node-names.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

inlet-nodes (method).


4.1.25 mnas-graph/core/src/core/methods/outlet-nodes.lisp

Dependency

inlet-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

outlet-nodes (method).


4.1.26 mnas-graph/core/src/core/methods/isolated-nodes.lisp

Dependency

outlet-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

isolated-nodes (method).


4.1.27 mnas-graph/core/src/core/methods/find-forward-nodes.lisp

Dependency

isolated-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.28 mnas-graph/core/src/core/methods/find-backward-nodes.lisp

Dependency

find-forward-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.29 mnas-graph/core/src/core/methods/find-both-nodes.lisp

Dependency

find-backward-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.30 mnas-graph/core/src/core/methods/isolated-p.lisp

Dependency

find-both-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.31 mnas-graph/core/src/core/methods/inlet-p.lisp

Dependency

isolated-p.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.32 mnas-graph/core/src/core/methods/outlet-p.lisp

Dependency

inlet-p.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

4.1.33 mnas-graph/core/src/core/methods/connected-nodes.lisp

Dependency

outlet-p.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

connected-nodes (method).


4.1.34 mnas-graph/core/src/core/methods/copy.lisp

Dependency

connected-nodes.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

copy (method).


4.1.35 mnas-graph/core/src/core/methods/empty.lisp

Dependency

copy.lisp (file).

Source

mnas-graph.asd.

Parent Component

methods (module).

Public Interface

empty (method).


4.1.36 mnas-graph/alg/src/alg/alg.lisp

Source

mnas-graph.asd.

Parent Component

src/alg (module).

Packages

mnas-graph/alg.

Public Interface

path (generic function).

Internals

4.1.37 mnas-graph/view/src/view/view.lisp

Source

mnas-graph.asd.

Parent Component

src/view (module).

Packages

mnas-graph/view.

Public Interface
Internals

4.1.38 mnas-graph/printer-viewer/src/printer-viewer/printer-viewer.lisp

Source

mnas-graph.asd.

Parent Component

src/printer-viewer (module).

Packages

mnas-graph/printer-viewer.

Public Interface
Internals

4.1.39 mnas-graph/filter/src/filter/filter.lisp

Source

mnas-graph.asd.

Parent Component

src/filter (module).

Packages

mnas-graph/filter.

Public Interface
Internals

make-filter-prg-path (function).


4.1.40 mnas-graph/demos/src/demos/demos.lisp

Source

mnas-graph.asd.

Parent Component

src/demos (module).

Packages

mnas-graph/demos.

Public Interface
Internals

fill-nodes (function).


5 Packages

Packages are listed by definition order.


5.1 mnas-graph/filter

Source

filter.lisp.

Use List

common-lisp.

Public Interface
Internals

make-filter-prg-path (function).


5.2 mnas-graph/printer-viewer

Source

printer-viewer.lisp.

Use List

common-lisp.

Public Interface
Internals

5.3 mnas-graph/alg

Пакет @b(mnas-graph/alg) реализует некоторые алгоритмы на графах.

Source

alg.lisp.

Use List
Public Interface

path (generic function).

Internals

5.4 mnas-graph/view

Пакет @b(mnas-graph/view) определяет функции для вывода и визуализации графов.

Вывод представления графа в файл производится в формате программы @link[uri="https://graphviz.org"](graphviz).

Преобразование графа в пригодный для визуального представления формат выполняется при помощи программы @link[uri="https://graphviz.org"](graphviz) или ее фильтров укладки.

В настоящее время доступны только базовые возможности визуализации графов.

Source

view.lisp.

Use List

common-lisp.

Public Interface
Internals

5.5 mnas-graph

Пакет @b(mnas-graph) определяет базовые функции для создания
структуры данных типа @link[uri="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)"](Graph) и ее отображения через @link[uri="https://graphviz.org/"](graphviz).

Пакет определяет следующие основные классы:
@begin(list)
@item(@ref[id=class-node](<node>) - вершина графа;) @item(@ref[id=class-edge](<edge>) - ребро графа;) @item(@ref[id=class-graph](<graph>) - граф.)
@end(list)

@b(Пример использования:)
@begin[lang=lisp](code)
(let*
((g (make-instance ’mnas-graph:<graph>))
(v1 (make-instance ’mnas-graph:<node> :owner g :name "v1"))
(v2 (make-instance ’mnas-graph:<node> :owner g :name "v2"))
(v3 (make-instance ’mnas-graph:<node> :owner g :name "v3"))
(r1 (make-instance ’mnas-graph:<edge> :tail v1 :head v2))
(r2 (make-instance ’mnas-graph:<edge> :tail v2 :head v3))
(r3 (make-instance ’mnas-graph:<edge> :tail v3 :head v1))) (mnas-graph:insert-to v1 g)
(mnas-graph:insert-to v2 g)
(mnas-graph:insert-to v3 g)
(mnas-graph:insert-to r1 g)
(mnas-graph:insert-to r2 g)
(mnas-graph:insert-to r3 g)
(mnas-graph/view:view-graph g))
@end(code)

Source

mnas-graph.lisp.

Use List

common-lisp.

Used By List

mnas-graph/alg.

Public Interface
Internals

5.6 mnas-graph/demos

Source

demos.lisp.

Use List

common-lisp.

Public Interface
Internals

fill-nodes (function).


6 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


6.1 Public Interface


6.1.1 Special variables

Special Variable: *filter-circo*

circo - filter for circular layout of graphs

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *filter-dot*

dot - filter for drawing directed graphs

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *filter-fdp*

fdp - filter for drawing undirected graphs

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *filter-neato*

neato - filter for drawing undirected graphs

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *filter-patchwork*

patchwork - filter for tree maps

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *filter-sfdp*

sfdp - filter for drawing large undirected graphs

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *filter-twopi*

twopi - filter for radial layouts of graphs

Package

mnas-graph/filter.

Source

filter.lisp.

Special Variable: *graph-count*

@b(Описание:) глобальная переменная @b(*graph-count*) используется для задния имени (по-умолчанию) файлу, содержащему граф.

Package

mnas-graph/view.

Source

view.lisp.

Special Variable: *output-path*

@b(Описание:) глобальная переменная @b(*output-path*) определяет каталог для вывода файлов графов (по-умолчанию.)

Package

mnas-graph/view.

Source

view.lisp.

Special Variable: *viewer-path*

Программа просмотрщик Графа

Package

mnas-graph/view.

Source

view.lisp.


6.1.2 Ordinary functions

Function: demo-1 ()
Package

mnas-graph/demos.

Source

demos.lisp.

Function: demo-2 ()
Package

mnas-graph/demos.

Source

demos.lisp.

Function: demo-3 ()
Package

mnas-graph/demos.

Source

demos.lisp.

Function: demo-4 ()
Package

mnas-graph/demos.

Source

demos.lisp.

Function: demo-5 ()
Package

mnas-graph/demos.

Source

demos.lisp.

Function: demo-6 (&key node-max-number edges-number outlet-color inlet-color izolated-color graphviz-prg)
Package

mnas-graph/demos.

Source

demos.lisp.

Function: make-graph (edges &key nodes)

@b(Описание:) функция @b(make-graph) возвращает граф с ребрами @b(edges) и вершинами вершинами @b(nodes).

@b(Пример использования:)
@begin[lang=lisp](code)
(mnas-graph/view:view-graph
(make-graph ’(("a" "c") ("b" "c") ("c" "d")
("c" "g") ("c" "e") ("e" "f")
("e" "g") ("h" "j") ("b" "f")) :nodes
’("k")))
@end(code)

Package

mnas-graph.

Source

mnas-graph.lisp.

Function: make-random-graph (&key node-max-number edges-number)

@b(Описание:) функция @b(make-random-graph) возвращает случайный граф с количеством ребер равным @b(edges-number) и количеством вершин не превышающим @b(node-max-number).

@b(Пример использования:)
@begin[lang=lisp](code)
(mnas-graph/view:view-graph
(make-random-graph :node-max-number 20 :edges-number 10)) @end(code)

Package

mnas-graph.

Source

mnas-graph.lisp.


6.1.3 Generic functions

Generic Reader: <node>-counter (object)
Generic Writer: (setf <node>-counter) (object)
Package

mnas-graph.

Methods
Reader Method: <node>-counter ((<node> <node>))
Writer Method: (setf <node>-counter) ((<node> <node>))

Количество, созданных вершин

Source

node.lisp.

Target Slot

counter.

Generic Reader: attr-area (object)
Generic Writer: (setf attr-area) (object)
Package

mnas-graph.

Methods
Reader Method: attr-area ((<area> <area>))
Writer Method: (setf attr-area) ((<area> <area>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-area.

Generic Reader: attr-arrowhead (object)
Generic Writer: (setf attr-arrowhead) (object)
Package

mnas-graph.

Methods
Reader Method: attr-arrowhead ((<arrowhead> <arrowhead>))
Writer Method: (setf attr-arrowhead) ((<arrowhead> <arrowhead>))

Type: @link[uri="https://graphviz.org/docs/attr-types/arrowType/"](arrowType)

Source

attributes.lisp.

Target Slot

sl-arrowhead.

Generic Reader: attr-arrowsize (object)
Generic Writer: (setf attr-arrowsize) (object)
Package

mnas-graph.

Methods
Reader Method: attr-arrowsize ((<arrowsize> <arrowsize>))
Writer Method: (setf attr-arrowsize) ((<arrowsize> <arrowsize>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-arrowsize.

Generic Reader: attr-arrowtail (object)
Generic Writer: (setf attr-arrowtail) (object)
Package

mnas-graph.

Methods
Reader Method: attr-arrowtail ((<arrowtail> <arrowtail>))
Writer Method: (setf attr-arrowtail) ((<arrowtail> <arrowtail>))

Type: @link[uri="https://graphviz.org/docs/attr-types/arrowType/"](arrowType)

Source

attributes.lisp.

Target Slot

sl-arrowtail.

Generic Reader: attr-bb (object)
Generic Writer: (setf attr-bb) (object)
Package

mnas-graph.

Methods
Reader Method: attr-bb ((<bb> <bb>))
Writer Method: (setf attr-bb) ((<bb> <bb>))

Type: @link[uri="https://graphviz.org/docs/attr-types/rect/"](rect)

Source

attributes.lisp.

Target Slot

sl-bb.

Generic Reader: attr-bgcolor (object)
Generic Writer: (setf attr-bgcolor) (object)
Package

mnas-graph.

Methods
Reader Method: attr-bgcolor ((<bgcolor> <bgcolor>))
Writer Method: (setf attr-bgcolor) ((<bgcolor> <bgcolor>))

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color), @link[uri="https://graphviz.org/docs/attr-types/colorList/"](colorList)

Source

attributes.lisp.

Target Slot

sl-bgcolor.

Generic Reader: attr-center (object)
Generic Writer: (setf attr-center) (object)
Package

mnas-graph.

Methods
Reader Method: attr-center ((<center> <center>))
Writer Method: (setf attr-center) ((<center> <center>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-center.

Generic Reader: attr-charset (object)
Generic Writer: (setf attr-charset) (object)
Package

mnas-graph.

Methods
Reader Method: attr-charset ((<charset> <charset>))
Writer Method: (setf attr-charset) ((<charset> <charset>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-charset.

Generic Reader: attr-class (object)
Generic Writer: (setf attr-class) (object)
Package

mnas-graph.

Methods
Reader Method: attr-class ((<class> <class>))
Writer Method: (setf attr-class) ((<class> <class>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-class.

Generic Reader: attr-clusterrank (object)
Generic Writer: (setf attr-clusterrank) (object)
Package

mnas-graph.

Methods
Reader Method: attr-clusterrank ((<clusterrank> <clusterrank>))
Writer Method: (setf attr-clusterrank) ((<clusterrank> <clusterrank>))

Type: @link[uri="https://graphviz.org/docs/attr-types/clusterMode/"](clusterMode)

Source

attributes.lisp.

Target Slot

sl-clusterrank.

Generic Reader: attr-color (object)
Generic Writer: (setf attr-color) (object)
Package

mnas-graph.

Methods
Reader Method: attr-color ((<color> <color>))
Writer Method: (setf attr-color) ((<color> <color>))

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color), @link[uri="https://graphviz.org/docs/attr-types/colorList/"](colorList)

Source

attributes.lisp.

Target Slot

sl-color.

Generic Reader: attr-colorscheme (object)
Generic Writer: (setf attr-colorscheme) (object)
Package

mnas-graph.

Methods
Reader Method: attr-colorscheme ((<colorscheme> <colorscheme>))
Writer Method: (setf attr-colorscheme) ((<colorscheme> <colorscheme>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-colorscheme.

Generic Reader: attr-comment (object)
Generic Writer: (setf attr-comment) (object)
Package

mnas-graph.

Methods
Reader Method: attr-comment ((<comment> <comment>))
Writer Method: (setf attr-comment) ((<comment> <comment>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-comment.

Generic Reader: attr-compound (object)
Generic Writer: (setf attr-compound) (object)
Package

mnas-graph.

Methods
Reader Method: attr-compound ((<compound> <compound>))
Writer Method: (setf attr-compound) ((<compound> <compound>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-compound.

Generic Reader: attr-concentrate (object)
Generic Writer: (setf attr-concentrate) (object)
Package

mnas-graph.

Methods
Reader Method: attr-concentrate ((<concentrate> <concentrate>))
Writer Method: (setf attr-concentrate) ((<concentrate> <concentrate>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-concentrate.

Generic Reader: attr-constraint (object)
Generic Writer: (setf attr-constraint) (object)
Package

mnas-graph.

Methods
Reader Method: attr-constraint ((<constraint> <constraint>))
Writer Method: (setf attr-constraint) ((<constraint> <constraint>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-constraint.

Generic Reader: attr-decorate (object)
Generic Writer: (setf attr-decorate) (object)
Package

mnas-graph.

Methods
Reader Method: attr-decorate ((<decorate> <decorate>))
Writer Method: (setf attr-decorate) ((<decorate> <decorate>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-decorate.

Generic Reader: attr-defaultdist (object)
Generic Writer: (setf attr-defaultdist) (object)
Package

mnas-graph.

Methods
Reader Method: attr-defaultdist ((<defaultdist> <defaultdist>))
Writer Method: (setf attr-defaultdist) ((<defaultdist> <defaultdist>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-defaultdist.

Generic Reader: attr-dim (object)
Generic Writer: (setf attr-dim) (object)
Package

mnas-graph.

Methods
Reader Method: attr-dim ((<dim> <dim>))
Writer Method: (setf attr-dim) ((<dim> <dim>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-dim.

Generic Reader: attr-dimen (object)
Generic Writer: (setf attr-dimen) (object)
Package

mnas-graph.

Methods
Reader Method: attr-dimen ((<dimen> <dimen>))
Writer Method: (setf attr-dimen) ((<dimen> <dimen>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-dimen.

Generic Reader: attr-dir (object)
Generic Writer: (setf attr-dir) (object)
Package

mnas-graph.

Methods
Reader Method: attr-dir ((<dir> <dir>))
Writer Method: (setf attr-dir) ((<dir> <dir>))

Type: @link[uri="https://graphviz.org/docs/attr-types/dirType/"](dirType)

Source

attributes.lisp.

Target Slot

sl-dir.

Generic Reader: attr-diredgeconstraints (object)
Generic Writer: (setf attr-diredgeconstraints) (object)
Package

mnas-graph.

Methods
Reader Method: attr-diredgeconstraints ((<diredgeconstraints> <diredgeconstraints>))
Writer Method: (setf attr-diredgeconstraints) ((<diredgeconstraints> <diredgeconstraints>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-diredgeconstraints.

Generic Reader: attr-distortion (object)
Generic Writer: (setf attr-distortion) (object)
Package

mnas-graph.

Methods
Reader Method: attr-distortion ((<distortion> <distortion>))
Writer Method: (setf attr-distortion) ((<distortion> <distortion>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-distortion.

Generic Reader: attr-dpi (object)
Generic Writer: (setf attr-dpi) (object)
Package

mnas-graph.

Methods
Reader Method: attr-dpi ((<dpi> <dpi>))
Writer Method: (setf attr-dpi) ((<dpi> <dpi>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-dpi.

Generic Reader: attr-edgehref (object)
Generic Writer: (setf attr-edgehref) (object)
Package

mnas-graph.

Methods
Reader Method: attr-edgehref ((<edgehref> <edgehref>))
Writer Method: (setf attr-edgehref) ((<edgehref> <edgehref>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-edgehref.

Generic Reader: attr-edgetarget (object)
Generic Writer: (setf attr-edgetarget) (object)
Package

mnas-graph.

Methods
Reader Method: attr-edgetarget ((<edgetarget> <edgetarget>))
Writer Method: (setf attr-edgetarget) ((<edgetarget> <edgetarget>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-edgetarget.

Generic Reader: attr-edgetooltip (object)
Generic Writer: (setf attr-edgetooltip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-edgetooltip ((<edgetooltip> <edgetooltip>))
Writer Method: (setf attr-edgetooltip) ((<edgetooltip> <edgetooltip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-edgetooltip.

Generic Reader: attr-epsilon (object)
Generic Writer: (setf attr-epsilon) (object)
Package

mnas-graph.

Methods
Reader Method: attr-epsilon ((<epsilon> <epsilon>))
Writer Method: (setf attr-epsilon) ((<epsilon> <epsilon>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-epsilon.

Generic Reader: attr-esep (object)
Generic Writer: (setf attr-esep) (object)
Package

mnas-graph.

Methods
Reader Method: attr-esep ((<esep> <esep>))
Writer Method: (setf attr-esep) ((<esep> <esep>))

Type: @link[uri="https://graphviz.org/docs/attr-types/addDouble/"](addDouble), @link[uri="https://graphviz.org/docs/attr-types/addPoint/"](addPoint)

Source

attributes.lisp.

Target Slot

sl-esep.

Generic Reader: attr-fillcolor (object)
Generic Writer: (setf attr-fillcolor) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fillcolor ((<fillcolor> <fillcolor>))
Writer Method: (setf attr-fillcolor) ((<fillcolor> <fillcolor>))

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color), @link[uri="https://graphviz.org/docs/attr-types/colorList/"](colorList)

Source

attributes.lisp.

Target Slot

sl-fillcolor.

Generic Reader: attr-fixedsize (object)
Generic Writer: (setf attr-fixedsize) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fixedsize ((<fixedsize> <fixedsize>))
Writer Method: (setf attr-fixedsize) ((<fixedsize> <fixedsize>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-fixedsize.

Generic Reader: attr-fontcolor (object)
Generic Writer: (setf attr-fontcolor) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fontcolor ((<fontcolor> <fontcolor>))
Writer Method: (setf attr-fontcolor) ((<fontcolor> <fontcolor>))

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color)

Source

attributes.lisp.

Target Slot

sl-fontcolor.

Generic Reader: attr-fontname (object)
Generic Writer: (setf attr-fontname) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fontname ((<fontname> <fontname>))
Writer Method: (setf attr-fontname) ((<fontname> <fontname>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-fontname.

Generic Reader: attr-fontnames (object)
Generic Writer: (setf attr-fontnames) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fontnames ((<fontnames> <fontnames>))
Writer Method: (setf attr-fontnames) ((<fontnames> <fontnames>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-fontnames.

Generic Reader: attr-fontpath (object)
Generic Writer: (setf attr-fontpath) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fontpath ((<fontpath> <fontpath>))
Writer Method: (setf attr-fontpath) ((<fontpath> <fontpath>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-fontpath.

Generic Reader: attr-fontsize (object)
Generic Writer: (setf attr-fontsize) (object)
Package

mnas-graph.

Methods
Reader Method: attr-fontsize ((<fontsize> <fontsize>))
Writer Method: (setf attr-fontsize) ((<fontsize> <fontsize>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-fontsize.

Generic Reader: attr-forcelabels (object)
Generic Writer: (setf attr-forcelabels) (object)
Package

mnas-graph.

Methods
Reader Method: attr-forcelabels ((<forcelabels> <forcelabels>))
Writer Method: (setf attr-forcelabels) ((<forcelabels> <forcelabels>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-forcelabels.

Generic Reader: attr-gradientangle (object)
Generic Writer: (setf attr-gradientangle) (object)
Package

mnas-graph.

Methods
Reader Method: attr-gradientangle ((<gradientangle> <gradientangle>))
Writer Method: (setf attr-gradientangle) ((<gradientangle> <gradientangle>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-gradientangle.

Generic Reader: attr-group (object)
Generic Writer: (setf attr-group) (object)
Package

mnas-graph.

Methods
Reader Method: attr-group ((<group> <group>))
Writer Method: (setf attr-group) ((<group> <group>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-group.

Generic Reader: attr-head_lp (object)
Generic Writer: (setf attr-head_lp) (object)
Package

mnas-graph.

Methods
Reader Method: attr-head_lp ((<head_lp> <head_lp>))
Writer Method: (setf attr-head_lp) ((<head_lp> <head_lp>))

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-head_lp.

Generic Reader: attr-headclip (object)
Generic Writer: (setf attr-headclip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-headclip ((<headclip> <headclip>))
Writer Method: (setf attr-headclip) ((<headclip> <headclip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-headclip.

Generic Reader: attr-headhref (object)
Generic Writer: (setf attr-headhref) (object)
Package

mnas-graph.

Methods
Reader Method: attr-headhref ((<headhref> <headhref>))
Writer Method: (setf attr-headhref) ((<headhref> <headhref>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-headhref.

Generic Reader: attr-headlabel (object)
Generic Writer: (setf attr-headlabel) (object)
Package

mnas-graph.

Methods
Reader Method: attr-headlabel ((<headlabel> <headlabel>))
Writer Method: (setf attr-headlabel) ((<headlabel> <headlabel>))

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Source

attributes.lisp.

Target Slot

sl-headlabel.

Generic Reader: attr-headport (object)
Generic Writer: (setf attr-headport) (object)
Package

mnas-graph.

Methods
Reader Method: attr-headport ((<headport> <headport>))
Writer Method: (setf attr-headport) ((<headport> <headport>))

Type: @link[uri="https://graphviz.org/docs/attr-types/portPos/"](portPos)

Source

attributes.lisp.

Target Slot

sl-headport.

Generic Reader: attr-headtarget (object)
Generic Writer: (setf attr-headtarget) (object)
Package

mnas-graph.

Methods
Reader Method: attr-headtarget ((<headtarget> <headtarget>))
Writer Method: (setf attr-headtarget) ((<headtarget> <headtarget>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-headtarget.

Generic Reader: attr-headtooltip (object)
Generic Writer: (setf attr-headtooltip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-headtooltip ((<headtooltip> <headtooltip>))
Writer Method: (setf attr-headtooltip) ((<headtooltip> <headtooltip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-headtooltip.

Generic Reader: attr-height (object)
Generic Writer: (setf attr-height) (object)
Package

mnas-graph.

Methods
Reader Method: attr-height ((<height> <height>))
Writer Method: (setf attr-height) ((<height> <height>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-height.

Generic Reader: attr-href (object)
Generic Writer: (setf attr-href) (object)
Package

mnas-graph.

Methods
Reader Method: attr-href ((<href> <href>))
Writer Method: (setf attr-href) ((<href> <href>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-href.

Generic Reader: attr-id (object)
Generic Writer: (setf attr-id) (object)
Package

mnas-graph.

Methods
Reader Method: attr-id ((<id> <id>))
Writer Method: (setf attr-id) ((<id> <id>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-id.

Generic Reader: attr-image (object)
Generic Writer: (setf attr-image) (object)
Package

mnas-graph.

Methods
Reader Method: attr-image ((<image> <image>))
Writer Method: (setf attr-image) ((<image> <image>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-image.

Generic Reader: attr-imagepath (object)
Generic Writer: (setf attr-imagepath) (object)
Package

mnas-graph.

Methods
Reader Method: attr-imagepath ((<imagepath> <imagepath>))
Writer Method: (setf attr-imagepath) ((<imagepath> <imagepath>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-imagepath.

Generic Reader: attr-imagepos (object)
Generic Writer: (setf attr-imagepos) (object)
Package

mnas-graph.

Methods
Reader Method: attr-imagepos ((<imagepos> <imagepos>))
Writer Method: (setf attr-imagepos) ((<imagepos> <imagepos>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-imagepos.

Generic Reader: attr-imagescale (object)
Generic Writer: (setf attr-imagescale) (object)
Package

mnas-graph.

Methods
Reader Method: attr-imagescale ((<imagescale> <imagescale>))
Writer Method: (setf attr-imagescale) ((<imagescale> <imagescale>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-imagescale.

Generic Reader: attr-inputscale (object)
Generic Writer: (setf attr-inputscale) (object)
Package

mnas-graph.

Methods
Reader Method: attr-inputscale ((<inputscale> <inputscale>))
Writer Method: (setf attr-inputscale) ((<inputscale> <inputscale>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-inputscale.

Generic Reader: attr-label (object)
Generic Writer: (setf attr-label) (object)
Package

mnas-graph.

Methods
Reader Method: attr-label ((<label> <label>))
Writer Method: (setf attr-label) ((<label> <label>))

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Source

attributes.lisp.

Target Slot

sl-label.

Generic Reader: attr-label_scheme (object)
Generic Writer: (setf attr-label_scheme) (object)
Package

mnas-graph.

Methods
Reader Method: attr-label_scheme ((<label_scheme> <label_scheme>))
Writer Method: (setf attr-label_scheme) ((<label_scheme> <label_scheme>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-label_scheme.

Generic Reader: attr-labelangle (object)
Generic Writer: (setf attr-labelangle) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelangle ((<labelangle> <labelangle>))
Writer Method: (setf attr-labelangle) ((<labelangle> <labelangle>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-labelangle.

Generic Reader: attr-labeldistance (object)
Generic Writer: (setf attr-labeldistance) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labeldistance ((<labeldistance> <labeldistance>))
Writer Method: (setf attr-labeldistance) ((<labeldistance> <labeldistance>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-labeldistance.

Generic Reader: attr-labelfloat (object)
Generic Writer: (setf attr-labelfloat) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelfloat ((<labelfloat> <labelfloat>))
Writer Method: (setf attr-labelfloat) ((<labelfloat> <labelfloat>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-labelfloat.

Generic Reader: attr-labelfontcolor (object)
Generic Writer: (setf attr-labelfontcolor) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelfontcolor ((<labelfontcolor> <labelfontcolor>))
Writer Method: (setf attr-labelfontcolor) ((<labelfontcolor> <labelfontcolor>))

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color)

Source

attributes.lisp.

Target Slot

sl-labelfontcolor.

Generic Reader: attr-labelfontname (object)
Generic Writer: (setf attr-labelfontname) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelfontname ((<labelfontname> <labelfontname>))
Writer Method: (setf attr-labelfontname) ((<labelfontname> <labelfontname>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-labelfontname.

Generic Reader: attr-labelfontsize (object)
Generic Writer: (setf attr-labelfontsize) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelfontsize ((<labelfontsize> <labelfontsize>))
Writer Method: (setf attr-labelfontsize) ((<labelfontsize> <labelfontsize>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-labelfontsize.

Generic Reader: attr-labelhref (object)
Generic Writer: (setf attr-labelhref) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelhref ((<labelhref> <labelhref>))
Writer Method: (setf attr-labelhref) ((<labelhref> <labelhref>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-labelhref.

Generic Reader: attr-labeljust (object)
Generic Writer: (setf attr-labeljust) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labeljust ((<labeljust> <labeljust>))
Writer Method: (setf attr-labeljust) ((<labeljust> <labeljust>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-labeljust.

Generic Reader: attr-labelloc (object)
Generic Writer: (setf attr-labelloc) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labelloc ((<labelloc> <labelloc>))
Writer Method: (setf attr-labelloc) ((<labelloc> <labelloc>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-labelloc.

Generic Reader: attr-labeltarget (object)
Generic Writer: (setf attr-labeltarget) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labeltarget ((<labeltarget> <labeltarget>))
Writer Method: (setf attr-labeltarget) ((<labeltarget> <labeltarget>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-labeltarget.

Generic Reader: attr-labeltooltip (object)
Generic Writer: (setf attr-labeltooltip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-labeltooltip ((<labeltooltip> <labeltooltip>))
Writer Method: (setf attr-labeltooltip) ((<labeltooltip> <labeltooltip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-labeltooltip.

Generic Reader: attr-landscape (object)
Generic Writer: (setf attr-landscape) (object)
Package

mnas-graph.

Methods
Reader Method: attr-landscape ((<landscape> <landscape>))
Writer Method: (setf attr-landscape) ((<landscape> <landscape>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-landscape.

Generic Reader: attr-layer (object)
Generic Writer: (setf attr-layer) (object)
Package

mnas-graph.

Methods
Reader Method: attr-layer ((<layer> <layer>))
Writer Method: (setf attr-layer) ((<layer> <layer>))

Type: @link[uri="https://graphviz.org/docs/attr-types/layerRange/"](layerRange)

Source

attributes.lisp.

Target Slot

sl-layer.

Generic Reader: attr-layerlistsep (object)
Generic Writer: (setf attr-layerlistsep) (object)
Package

mnas-graph.

Methods
Reader Method: attr-layerlistsep ((<layerlistsep> <layerlistsep>))
Writer Method: (setf attr-layerlistsep) ((<layerlistsep> <layerlistsep>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-layerlistsep.

Generic Reader: attr-layers (object)
Generic Writer: (setf attr-layers) (object)
Package

mnas-graph.

Methods
Reader Method: attr-layers ((<layers> <layers>))
Writer Method: (setf attr-layers) ((<layers> <layers>))

Type: @link[uri="https://graphviz.org/docs/attr-types/layerList/"](layerList)

Source

attributes.lisp.

Target Slot

sl-layers.

Generic Reader: attr-layerselect (object)
Generic Writer: (setf attr-layerselect) (object)
Package

mnas-graph.

Methods
Reader Method: attr-layerselect ((<layerselect> <layerselect>))
Writer Method: (setf attr-layerselect) ((<layerselect> <layerselect>))

Type: @link[uri="https://graphviz.org/docs/attr-types/layerRange/"](layerRange)

Source

attributes.lisp.

Target Slot

sl-layerselect.

Generic Reader: attr-layersep (object)
Generic Writer: (setf attr-layersep) (object)
Package

mnas-graph.

Methods
Reader Method: attr-layersep ((<layersep> <layersep>))
Writer Method: (setf attr-layersep) ((<layersep> <layersep>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-layersep.

Generic Reader: attr-layout (object)
Generic Writer: (setf attr-layout) (object)
Package

mnas-graph.

Methods
Reader Method: attr-layout ((<layout> <layout>))
Writer Method: (setf attr-layout) ((<layout> <layout>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-layout.

Generic Reader: attr-len (object)
Generic Writer: (setf attr-len) (object)
Package

mnas-graph.

Methods
Reader Method: attr-len ((<len> <len>))
Writer Method: (setf attr-len) ((<len> <len>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-len.

Generic Reader: attr-levels (object)
Generic Writer: (setf attr-levels) (object)
Package

mnas-graph.

Methods
Reader Method: attr-levels ((<levels> <levels>))
Writer Method: (setf attr-levels) ((<levels> <levels>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-levels.

Generic Reader: attr-levelsgap (object)
Generic Writer: (setf attr-levelsgap) (object)
Package

mnas-graph.

Methods
Reader Method: attr-levelsgap ((<levelsgap> <levelsgap>))
Writer Method: (setf attr-levelsgap) ((<levelsgap> <levelsgap>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-levelsgap.

Generic Reader: attr-lhead (object)
Generic Writer: (setf attr-lhead) (object)
Package

mnas-graph.

Methods
Reader Method: attr-lhead ((<lhead> <lhead>))
Writer Method: (setf attr-lhead) ((<lhead> <lhead>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-lhead.

Generic Reader: attr-lheight (object)
Generic Writer: (setf attr-lheight) (object)
Package

mnas-graph.

Methods
Reader Method: attr-lheight ((<lheight> <lheight>))
Writer Method: (setf attr-lheight) ((<lheight> <lheight>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-lheight.

Generic Reader: attr-lp (object)
Generic Writer: (setf attr-lp) (object)
Package

mnas-graph.

Methods
Reader Method: attr-lp ((<lp> <lp>))
Writer Method: (setf attr-lp) ((<lp> <lp>))

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-lp.

Generic Reader: attr-ltail (object)
Generic Writer: (setf attr-ltail) (object)
Package

mnas-graph.

Methods
Reader Method: attr-ltail ((<ltail> <ltail>))
Writer Method: (setf attr-ltail) ((<ltail> <ltail>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-ltail.

Generic Reader: attr-lwidth (object)
Generic Writer: (setf attr-lwidth) (object)
Package

mnas-graph.

Methods
Reader Method: attr-lwidth ((<lwidth> <lwidth>))
Writer Method: (setf attr-lwidth) ((<lwidth> <lwidth>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-lwidth.

Generic Reader: attr-margin (object)
Generic Writer: (setf attr-margin) (object)
Package

mnas-graph.

Methods
Reader Method: attr-margin ((<margin> <margin>))
Writer Method: (setf attr-margin) ((<margin> <margin>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-margin.

Generic Reader: attr-maxiter (object)
Generic Writer: (setf attr-maxiter) (object)
Package

mnas-graph.

Methods
Reader Method: attr-maxiter ((<maxiter> <maxiter>))
Writer Method: (setf attr-maxiter) ((<maxiter> <maxiter>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-maxiter.

Generic Reader: attr-mclimit (object)
Generic Writer: (setf attr-mclimit) (object)
Package

mnas-graph.

Methods
Reader Method: attr-mclimit ((<mclimit> <mclimit>))
Writer Method: (setf attr-mclimit) ((<mclimit> <mclimit>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-mclimit.

Generic Reader: attr-mindist (object)
Generic Writer: (setf attr-mindist) (object)
Package

mnas-graph.

Methods
Reader Method: attr-mindist ((<mindist> <mindist>))
Writer Method: (setf attr-mindist) ((<mindist> <mindist>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-mindist.

Generic Reader: attr-minlen (object)
Generic Writer: (setf attr-minlen) (object)
Package

mnas-graph.

Methods
Reader Method: attr-minlen ((<minlen> <minlen>))
Writer Method: (setf attr-minlen) ((<minlen> <minlen>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-minlen.

Generic Reader: attr-mode (object)
Generic Writer: (setf attr-mode) (object)
Package

mnas-graph.

Methods
Reader Method: attr-mode ((<mode> <mode>))
Writer Method: (setf attr-mode) ((<mode> <mode>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-mode.

Generic Reader: attr-model (object)
Generic Writer: (setf attr-model) (object)
Package

mnas-graph.

Methods
Reader Method: attr-model ((<model> <model>))
Writer Method: (setf attr-model) ((<model> <model>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-model.

Generic Reader: attr-mosek (object)
Generic Writer: (setf attr-mosek) (object)
Package

mnas-graph.

Methods
Reader Method: attr-mosek ((<mosek> <mosek>))
Writer Method: (setf attr-mosek) ((<mosek> <mosek>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-mosek.

Generic Reader: attr-newrank (object)
Generic Writer: (setf attr-newrank) (object)
Package

mnas-graph.

Methods
Reader Method: attr-newrank ((<newrank> <newrank>))
Writer Method: (setf attr-newrank) ((<newrank> <newrank>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-newrank.

Generic Reader: attr-nodesep (object)
Generic Writer: (setf attr-nodesep) (object)
Package

mnas-graph.

Methods
Reader Method: attr-nodesep ((<nodesep> <nodesep>))
Writer Method: (setf attr-nodesep) ((<nodesep> <nodesep>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-nodesep.

Generic Reader: attr-nojustify (object)
Generic Writer: (setf attr-nojustify) (object)
Package

mnas-graph.

Methods
Reader Method: attr-nojustify ((<nojustify> <nojustify>))
Writer Method: (setf attr-nojustify) ((<nojustify> <nojustify>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-nojustify.

Generic Reader: attr-normalize (object)
Generic Writer: (setf attr-normalize) (object)
Package

mnas-graph.

Methods
Reader Method: attr-normalize ((<normalize> <normalize>))
Writer Method: (setf attr-normalize) ((<normalize> <normalize>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-normalize.

Generic Reader: attr-notranslate (object)
Generic Writer: (setf attr-notranslate) (object)
Package

mnas-graph.

Methods
Reader Method: attr-notranslate ((<notranslate> <notranslate>))
Writer Method: (setf attr-notranslate) ((<notranslate> <notranslate>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-notranslate.

Generic Reader: attr-nslimit (object)
Generic Writer: (setf attr-nslimit) (object)
Package

mnas-graph.

Methods
Reader Method: attr-nslimit ((<nslimit> <nslimit>))
Writer Method: (setf attr-nslimit) ((<nslimit> <nslimit>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-nslimit.

Generic Reader: attr-nslimit1 (object)
Generic Writer: (setf attr-nslimit1) (object)
Package

mnas-graph.

Methods
Reader Method: attr-nslimit1 ((<nslimit1> <nslimit1>))
Writer Method: (setf attr-nslimit1) ((<nslimit1> <nslimit1>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-nslimit1.

Generic Reader: attr-ordering (object)
Generic Writer: (setf attr-ordering) (object)
Package

mnas-graph.

Methods
Reader Method: attr-ordering ((<ordering> <ordering>))
Writer Method: (setf attr-ordering) ((<ordering> <ordering>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-ordering.

Generic Reader: attr-orientation (object)
Generic Writer: (setf attr-orientation) (object)
Package

mnas-graph.

Methods
Reader Method: attr-orientation ((<orientation> <orientation>))
Writer Method: (setf attr-orientation) ((<orientation> <orientation>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-orientation.

Generic Reader: attr-outputorder (object)
Generic Writer: (setf attr-outputorder) (object)
Package

mnas-graph.

Methods
Reader Method: attr-outputorder ((<outputorder> <outputorder>))
Writer Method: (setf attr-outputorder) ((<outputorder> <outputorder>))

Type: @link[uri="https://graphviz.org/docs/attr-types/outputMode/"](outputMode)

Source

attributes.lisp.

Target Slot

sl-outputorder.

Generic Reader: attr-overlap (object)
Generic Writer: (setf attr-overlap) (object)
Package

mnas-graph.

Methods
Reader Method: attr-overlap ((<overlap> <overlap>))
Writer Method: (setf attr-overlap) ((<overlap> <overlap>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-overlap.

Generic Reader: attr-overlap_scaling (object)
Generic Writer: (setf attr-overlap_scaling) (object)
Package

mnas-graph.

Methods
Reader Method: attr-overlap_scaling ((<overlap_scaling> <overlap_scaling>))
Writer Method: (setf attr-overlap_scaling) ((<overlap_scaling> <overlap_scaling>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-overlap_scaling.

Generic Reader: attr-overlap_shrink (object)
Generic Writer: (setf attr-overlap_shrink) (object)
Package

mnas-graph.

Methods
Reader Method: attr-overlap_shrink ((<overlap_shrink> <overlap_shrink>))
Writer Method: (setf attr-overlap_shrink) ((<overlap_shrink> <overlap_shrink>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-overlap_shrink.

Generic Reader: attr-pack (object)
Generic Writer: (setf attr-pack) (object)
Package

mnas-graph.

Methods
Reader Method: attr-pack ((<pack> <pack>))
Writer Method: (setf attr-pack) ((<pack> <pack>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/int/"](int), @link[uri="https://graphviz.org/docs/attr-types/false/"](false)

Source

attributes.lisp.

Target Slot

sl-pack.

Generic Reader: attr-packmode (object)
Generic Writer: (setf attr-packmode) (object)
Package

mnas-graph.

Methods
Reader Method: attr-packmode ((<packmode> <packmode>))
Writer Method: (setf attr-packmode) ((<packmode> <packmode>))

Type: @link[uri="https://graphviz.org/docs/attr-types/packMode/"](packMode)

Source

attributes.lisp.

Target Slot

sl-packmode.

Generic Reader: attr-pad (object)
Generic Writer: (setf attr-pad) (object)
Package

mnas-graph.

Methods
Reader Method: attr-pad ((<pad> <pad>))
Writer Method: (setf attr-pad) ((<pad> <pad>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-pad.

Generic Reader: attr-page (object)
Generic Writer: (setf attr-page) (object)
Package

mnas-graph.

Methods
Reader Method: attr-page ((<page> <page>))
Writer Method: (setf attr-page) ((<page> <page>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-page.

Generic Reader: attr-pagedir (object)
Generic Writer: (setf attr-pagedir) (object)
Package

mnas-graph.

Methods
Reader Method: attr-pagedir ((<pagedir> <pagedir>))
Writer Method: (setf attr-pagedir) ((<pagedir> <pagedir>))

Type: @link[uri="https://graphviz.org/docs/attr-types/pagedir/"](pagedir)

Source

attributes.lisp.

Target Slot

sl-pagedir.

Generic Reader: attr-pencolor (object)
Generic Writer: (setf attr-pencolor) (object)
Package

mnas-graph.

Methods
Reader Method: attr-pencolor ((<pencolor> <pencolor>))
Writer Method: (setf attr-pencolor) ((<pencolor> <pencolor>))

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color)

Source

attributes.lisp.

Target Slot

sl-pencolor.

Generic Reader: attr-penwidth (object)
Generic Writer: (setf attr-penwidth) (object)
Package

mnas-graph.

Methods
Reader Method: attr-penwidth ((<penwidth> <penwidth>))
Writer Method: (setf attr-penwidth) ((<penwidth> <penwidth>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-penwidth.

Generic Reader: attr-peripheries (object)
Generic Writer: (setf attr-peripheries) (object)
Package

mnas-graph.

Methods
Reader Method: attr-peripheries ((<peripheries> <peripheries>))
Writer Method: (setf attr-peripheries) ((<peripheries> <peripheries>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-peripheries.

Generic Reader: attr-pin (object)
Generic Writer: (setf attr-pin) (object)
Package

mnas-graph.

Methods
Reader Method: attr-pin ((<pin> <pin>))
Writer Method: (setf attr-pin) ((<pin> <pin>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-pin.

Generic Reader: attr-pos (object)
Generic Writer: (setf attr-pos) (object)
Package

mnas-graph.

Methods
Reader Method: attr-pos ((<pos> <pos>))
Writer Method: (setf attr-pos) ((<pos> <pos>))

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point), @link[uri="https://graphviz.org/docs/attr-types/splineType/"](splineType)

Source

attributes.lisp.

Target Slot

sl-pos.

Generic Reader: attr-quadtree (object)
Generic Writer: (setf attr-quadtree) (object)
Package

mnas-graph.

Methods
Reader Method: attr-quadtree ((<quadtree> <quadtree>))
Writer Method: (setf attr-quadtree) ((<quadtree> <quadtree>))

Type: @link[uri="https://graphviz.org/docs/attr-types/quadType/"](quadType), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-quadtree.

Generic Reader: attr-quantum (object)
Generic Writer: (setf attr-quantum) (object)
Package

mnas-graph.

Methods
Reader Method: attr-quantum ((<quantum> <quantum>))
Writer Method: (setf attr-quantum) ((<quantum> <quantum>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-quantum.

Generic Reader: attr-rank (object)
Generic Writer: (setf attr-rank) (object)
Package

mnas-graph.

Methods
Reader Method: attr-rank ((<rank> <rank>))
Writer Method: (setf attr-rank) ((<rank> <rank>))

Type: @link[uri="https://graphviz.org/docs/attr-types/rankType/"](rankType)

Source

attributes.lisp.

Target Slot

sl-rank.

Generic Reader: attr-rankdir (object)
Generic Writer: (setf attr-rankdir) (object)
Package

mnas-graph.

Methods
Reader Method: attr-rankdir ((<rankdir> <rankdir>))
Writer Method: (setf attr-rankdir) ((<rankdir> <rankdir>))

Type: @link[uri="https://graphviz.org/docs/attr-types/rankdir/"](rankdir)

Source

attributes.lisp.

Target Slot

sl-rankdir.

Generic Reader: attr-ranksep (object)
Generic Writer: (setf attr-ranksep) (object)
Package

mnas-graph.

Methods
Reader Method: attr-ranksep ((<ranksep> <ranksep>))
Writer Method: (setf attr-ranksep) ((<ranksep> <ranksep>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/doubleList/"](doubleList)

Source

attributes.lisp.

Target Slot

sl-ranksep.

Generic Reader: attr-ratio (object)
Generic Writer: (setf attr-ratio) (object)
Package

mnas-graph.

Methods
Reader Method: attr-ratio ((<ratio> <ratio>))
Writer Method: (setf attr-ratio) ((<ratio> <ratio>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-ratio.

Generic Reader: attr-rects (object)
Generic Writer: (setf attr-rects) (object)
Package

mnas-graph.

Methods
Reader Method: attr-rects ((<rects> <rects>))
Writer Method: (setf attr-rects) ((<rects> <rects>))

Type: @link[uri="https://graphviz.org/docs/attr-types/rect/"](rect)

Source

attributes.lisp.

Target Slot

sl-rects.

Generic Reader: attr-regular (object)
Generic Writer: (setf attr-regular) (object)
Package

mnas-graph.

Methods
Reader Method: attr-regular ((<regular> <regular>))
Writer Method: (setf attr-regular) ((<regular> <regular>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-regular.

Generic Reader: attr-remincross (object)
Generic Writer: (setf attr-remincross) (object)
Package

mnas-graph.

Methods
Reader Method: attr-remincross ((<remincross> <remincross>))
Writer Method: (setf attr-remincross) ((<remincross> <remincross>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-remincross.

Generic Reader: attr-repulsiveforce (object)
Generic Writer: (setf attr-repulsiveforce) (object)
Package

mnas-graph.

Methods
Reader Method: attr-repulsiveforce ((<repulsiveforce> <repulsiveforce>))
Writer Method: (setf attr-repulsiveforce) ((<repulsiveforce> <repulsiveforce>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-repulsiveforce.

Generic Reader: attr-resolution (object)
Generic Writer: (setf attr-resolution) (object)
Package

mnas-graph.

Methods
Reader Method: attr-resolution ((<resolution> <resolution>))
Writer Method: (setf attr-resolution) ((<resolution> <resolution>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-resolution.

Generic Reader: attr-root (object)
Generic Writer: (setf attr-root) (object)
Package

mnas-graph.

Methods
Reader Method: attr-root ((<root> <root>))
Writer Method: (setf attr-root) ((<root> <root>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-root.

Generic Reader: attr-rotate (object)
Generic Writer: (setf attr-rotate) (object)
Package

mnas-graph.

Methods
Reader Method: attr-rotate ((<rotate> <rotate>))
Writer Method: (setf attr-rotate) ((<rotate> <rotate>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-rotate.

Generic Reader: attr-rotation (object)
Generic Writer: (setf attr-rotation) (object)
Package

mnas-graph.

Methods
Reader Method: attr-rotation ((<rotation> <rotation>))
Writer Method: (setf attr-rotation) ((<rotation> <rotation>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-rotation.

Generic Reader: attr-samehead (object)
Generic Writer: (setf attr-samehead) (object)
Package

mnas-graph.

Methods
Reader Method: attr-samehead ((<samehead> <samehead>))
Writer Method: (setf attr-samehead) ((<samehead> <samehead>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-samehead.

Generic Reader: attr-sametail (object)
Generic Writer: (setf attr-sametail) (object)
Package

mnas-graph.

Methods
Reader Method: attr-sametail ((<sametail> <sametail>))
Writer Method: (setf attr-sametail) ((<sametail> <sametail>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-sametail.

Generic Reader: attr-samplepoints (object)
Generic Writer: (setf attr-samplepoints) (object)
Package

mnas-graph.

Methods
Reader Method: attr-samplepoints ((<samplepoints> <samplepoints>))
Writer Method: (setf attr-samplepoints) ((<samplepoints> <samplepoints>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-samplepoints.

Generic Reader: attr-scale (object)
Generic Writer: (setf attr-scale) (object)
Package

mnas-graph.

Methods
Reader Method: attr-scale ((<scale> <scale>))
Writer Method: (setf attr-scale) ((<scale> <scale>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-scale.

Generic Reader: attr-searchsize (object)
Generic Writer: (setf attr-searchsize) (object)
Package

mnas-graph.

Methods
Reader Method: attr-searchsize ((<searchsize> <searchsize>))
Writer Method: (setf attr-searchsize) ((<searchsize> <searchsize>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-searchsize.

Generic Reader: attr-sep (object)
Generic Writer: (setf attr-sep) (object)
Package

mnas-graph.

Methods
Reader Method: attr-sep ((<sep> <sep>))
Writer Method: (setf attr-sep) ((<sep> <sep>))

Type: @link[uri="https://graphviz.org/docs/attr-types/addDouble/"](addDouble), @link[uri="https://graphviz.org/docs/attr-types/addPoint/"](addPoint)

Source

attributes.lisp.

Target Slot

sl-sep.

Generic Reader: attr-shape (object)
Generic Writer: (setf attr-shape) (object)
Package

mnas-graph.

Methods
Reader Method: attr-shape ((<shape> <shape>))
Writer Method: (setf attr-shape) ((<shape> <shape>))

Type: @link[uri="https://graphviz.org/docs/attr-types/shape/"](shape)

Source

attributes.lisp.

Target Slot

sl-shape.

Generic Reader: attr-shapefile (object)
Generic Writer: (setf attr-shapefile) (object)
Package

mnas-graph.

Methods
Reader Method: attr-shapefile ((<shapefile> <shapefile>))
Writer Method: (setf attr-shapefile) ((<shapefile> <shapefile>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-shapefile.

Generic Reader: attr-showboxes (object)
Generic Writer: (setf attr-showboxes) (object)
Package

mnas-graph.

Methods
Reader Method: attr-showboxes ((<showboxes> <showboxes>))
Writer Method: (setf attr-showboxes) ((<showboxes> <showboxes>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-showboxes.

Generic Reader: attr-sides (object)
Generic Writer: (setf attr-sides) (object)
Package

mnas-graph.

Methods
Reader Method: attr-sides ((<sides> <sides>))
Writer Method: (setf attr-sides) ((<sides> <sides>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-sides.

Generic Reader: attr-size (object)
Generic Writer: (setf attr-size) (object)
Package

mnas-graph.

Methods
Reader Method: attr-size ((<size> <size>))
Writer Method: (setf attr-size) ((<size> <size>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-size.

Generic Reader: attr-skew (object)
Generic Writer: (setf attr-skew) (object)
Package

mnas-graph.

Methods
Reader Method: attr-skew ((<skew> <skew>))
Writer Method: (setf attr-skew) ((<skew> <skew>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-skew.

Generic Reader: attr-smoothing (object)
Generic Writer: (setf attr-smoothing) (object)
Package

mnas-graph.

Methods
Reader Method: attr-smoothing ((<smoothing> <smoothing>))
Writer Method: (setf attr-smoothing) ((<smoothing> <smoothing>))

Type: @link[uri="https://graphviz.org/docs/attr-types/smoothType/"](smoothType)

Source

attributes.lisp.

Target Slot

sl-smoothing.

Generic Reader: attr-sortv (object)
Generic Writer: (setf attr-sortv) (object)
Package

mnas-graph.

Methods
Reader Method: attr-sortv ((<sortv> <sortv>))
Writer Method: (setf attr-sortv) ((<sortv> <sortv>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Source

attributes.lisp.

Target Slot

sl-sortv.

Generic Reader: attr-splines (object)
Generic Writer: (setf attr-splines) (object)
Package

mnas-graph.

Methods
Reader Method: attr-splines ((<splines> <splines>))
Writer Method: (setf attr-splines) ((<splines> <splines>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-splines.

Generic Reader: attr-start (object)
Generic Writer: (setf attr-start) (object)
Package

mnas-graph.

Methods
Reader Method: attr-start ((<start> <start>))
Writer Method: (setf attr-start) ((<start> <start>))

Type: @link[uri="https://graphviz.org/docs/attr-types/startType/"](startType)

Source

attributes.lisp.

Target Slot

sl-start.

Generic Reader: attr-style (object)
Generic Writer: (setf attr-style) (object)
Package

mnas-graph.

Methods
Reader Method: attr-style ((<style> <style>))
Writer Method: (setf attr-style) ((<style> <style>))

Type: @link[uri="https://graphviz.org/docs/attr-types/style/"](style)

Source

attributes.lisp.

Target Slot

sl-style.

Generic Reader: attr-stylesheet (object)
Generic Writer: (setf attr-stylesheet) (object)
Package

mnas-graph.

Methods
Reader Method: attr-stylesheet ((<stylesheet> <stylesheet>))
Writer Method: (setf attr-stylesheet) ((<stylesheet> <stylesheet>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-stylesheet.

Generic Reader: attr-tail_lp (object)
Generic Writer: (setf attr-tail_lp) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tail_lp ((<tail_lp> <tail_lp>))
Writer Method: (setf attr-tail_lp) ((<tail_lp> <tail_lp>))

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-tail_lp.

Generic Reader: attr-tailclip (object)
Generic Writer: (setf attr-tailclip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tailclip ((<tailclip> <tailclip>))
Writer Method: (setf attr-tailclip) ((<tailclip> <tailclip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-tailclip.

Generic Reader: attr-tailhref (object)
Generic Writer: (setf attr-tailhref) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tailhref ((<tailhref> <tailhref>))
Writer Method: (setf attr-tailhref) ((<tailhref> <tailhref>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-tailhref.

Generic Reader: attr-taillabel (object)
Generic Writer: (setf attr-taillabel) (object)
Package

mnas-graph.

Methods
Reader Method: attr-taillabel ((<taillabel> <taillabel>))
Writer Method: (setf attr-taillabel) ((<taillabel> <taillabel>))

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Source

attributes.lisp.

Target Slot

sl-taillabel.

Generic Reader: attr-tailport (object)
Generic Writer: (setf attr-tailport) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tailport ((<tailport> <tailport>))
Writer Method: (setf attr-tailport) ((<tailport> <tailport>))

Type: @link[uri="https://graphviz.org/docs/attr-types/portPos/"](portPos)

Source

attributes.lisp.

Target Slot

sl-tailport.

Generic Reader: attr-tailtarget (object)
Generic Writer: (setf attr-tailtarget) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tailtarget ((<tailtarget> <tailtarget>))
Writer Method: (setf attr-tailtarget) ((<tailtarget> <tailtarget>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-tailtarget.

Generic Reader: attr-tailtooltip (object)
Generic Writer: (setf attr-tailtooltip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tailtooltip ((<tailtooltip> <tailtooltip>))
Writer Method: (setf attr-tailtooltip) ((<tailtooltip> <tailtooltip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-tailtooltip.

Generic Reader: attr-target (object)
Generic Writer: (setf attr-target) (object)
Package

mnas-graph.

Methods
Reader Method: attr-target ((<target> <target>))
Writer Method: (setf attr-target) ((<target> <target>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-target.

Generic Reader: attr-tooltip (object)
Generic Writer: (setf attr-tooltip) (object)
Package

mnas-graph.

Methods
Reader Method: attr-tooltip ((<tooltip> <tooltip>))
Writer Method: (setf attr-tooltip) ((<tooltip> <tooltip>))

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Source

attributes.lisp.

Target Slot

sl-tooltip.

Generic Reader: attr-truecolor (object)
Generic Writer: (setf attr-truecolor) (object)
Package

mnas-graph.

Methods
Reader Method: attr-truecolor ((<truecolor> <truecolor>))
Writer Method: (setf attr-truecolor) ((<truecolor> <truecolor>))

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Source

attributes.lisp.

Target Slot

sl-truecolor.

Generic Reader: attr-vertices (object)
Generic Writer: (setf attr-vertices) (object)
Package

mnas-graph.

Methods
Reader Method: attr-vertices ((<vertices> <vertices>))
Writer Method: (setf attr-vertices) ((<vertices> <vertices>))

Type: @link[uri="https://graphviz.org/docs/attr-types/pointList/"](pointList)

Source

attributes.lisp.

Target Slot

sl-vertices.

Generic Reader: attr-viewport (object)
Generic Writer: (setf attr-viewport) (object)
Package

mnas-graph.

Methods
Reader Method: attr-viewport ((<viewport> <viewport>))
Writer Method: (setf attr-viewport) ((<viewport> <viewport>))

Type: @link[uri="https://graphviz.org/docs/attr-types/viewPort/"](viewPort)

Source

attributes.lisp.

Target Slot

sl-viewport.

Generic Reader: attr-voro_margin (object)
Generic Writer: (setf attr-voro_margin) (object)
Package

mnas-graph.

Methods
Reader Method: attr-voro_margin ((<voro_margin> <voro_margin>))
Writer Method: (setf attr-voro_margin) ((<voro_margin> <voro_margin>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-voro_margin.

Generic Reader: attr-weight (object)
Generic Writer: (setf attr-weight) (object)
Package

mnas-graph.

Methods
Reader Method: attr-weight ((<weight> <weight>))
Writer Method: (setf attr-weight) ((<weight> <weight>))

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int), @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-weight.

Generic Reader: attr-width (object)
Generic Writer: (setf attr-width) (object)
Package

mnas-graph.

Methods
Reader Method: attr-width ((<width> <width>))
Writer Method: (setf attr-width) ((<width> <width>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-width.

Generic Reader: attr-xdotversion (object)
Generic Writer: (setf attr-xdotversion) (object)
Package

mnas-graph.

Methods
Reader Method: attr-xdotversion ((<xdotversion> <xdotversion>))
Writer Method: (setf attr-xdotversion) ((<xdotversion> <xdotversion>))

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Source

attributes.lisp.

Target Slot

sl-xdotversion.

Generic Reader: attr-xlabel (object)
Generic Writer: (setf attr-xlabel) (object)
Package

mnas-graph.

Methods
Reader Method: attr-xlabel ((<xlabel> <xlabel>))
Writer Method: (setf attr-xlabel) ((<xlabel> <xlabel>))

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Source

attributes.lisp.

Target Slot

sl-xlabel.

Generic Reader: attr-xlp (object)
Generic Writer: (setf attr-xlp) (object)
Package

mnas-graph.

Methods
Reader Method: attr-xlp ((<xlp> <xlp>))
Writer Method: (setf attr-xlp) ((<xlp> <xlp>))

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Source

attributes.lisp.

Target Slot

sl-xlp.

Generic Reader: attr-z (object)
Generic Writer: (setf attr-z) (object)
Package

mnas-graph.

Methods
Reader Method: attr-z ((<z> <z>))
Writer Method: (setf attr-z) ((<z> <z>))

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Source

attributes.lisp.

Target Slot

sl-z.

Generic Function: both-edges (node graph)

@b(Описание:) обобщенная функция @b(inlet-edges) возвращает хеш-таблицу ребер, входящих в и исходящих из вершины @b(node) графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: both-edges ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(both-edges "c" graph))
@end(code)

Source

both-edges.lisp.

Method: both-edges ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(both-edges (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

both-edges.lisp.

Generic Function: clear (graph)

@b(Описание:) обобщенная функция @b(clear) возвращает граф @b(graph), удаляя из него все вершины и ребра.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: clear ((graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-random-graph))) (format t "~A~%~%~A" graph (mnas-graph:clear graph))) @end(code)

Source

clear.lisp.

Generic Function: connected-nodes (node graph &key direction depth)

@b(Описание:) обобщенная функция @b(connected-nodes) возвращает хеш-таблицу вершин при поиске в глубину начиная с вершины @b(node).

Параметр @b(direction) задает направление поиска:
@begin(list)

@item(:forward - поиск ведется в направлении ребер исходящих из вершины;)
@item(:backward - поиск ведется в направлении ребер входящих в вершину;)
@item(:both - поиск ведется в обоих направлениях.)
@end(list)

Параметр @b(depth) задает предельную глубину поиска.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: connected-nodes ((node <node>) (graph <graph>) &key direction depth)

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(connected-nodes (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

connected-nodes.lisp.

Generic Function: copy (obj)

@b(Описание:) обобщенная функция @b(copy) возвращает копию объекта граф @b(obj).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: copy ((graph <graph>))
Source

copy.lisp.

Generic Function: count-edges (graph)

@b(Описание:) метод @b(count-edges) возвращает количество ребер графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: count-edges ((graph <graph>))

@b(Пример использования:) @begin[lang=lisp](code);
(count-edges (make-random-graph)) -> 100 @end(code)

Source

count-edges.lisp.

Generic Function: count-nodes (graph)

@b(Описание:) метод @b(count-nodes) возвращает количество вершин графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: count-nodes ((graph <graph>))

@b(Описание:) метод @b(count-nodes) возвращает количество вершин графа @b(graph).

@b(Пример использования:)
@begin[lang=lisp](code);
(count-nodes (make-random-graph)) -> some wat less then 100 @end(code)

Source

count-nodes.lisp.

Generic Function: edge-names (graph)

@b(Описание:) обобщенная функция @b(edge-names) возвращает список имен ребер графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: edge-names ((g <graph>))

@b(Пример использования:) @begin[lang=lisp](code)
(let ((graph (mnas-graph:make-random-graph))) (mnas-graph:edge-names graph)) @end(code)

Source

edge-names.lisp.

Generic Reader: edges (object)
Generic Writer: (setf edges) (object)
Package

mnas-graph.

Methods
Reader Method: edges ((<graph> <graph>))
Writer Method: (setf edges) ((<graph> <graph>))

Хешированная таблица ребер графа. Ключ - ребро; значение - ребро.

Source

graph.lisp.

Target Slot

edges.

Generic Function: empty (container)

@b(Описание:) обобщенная функция @b(empty) возвращает t если объект @b(container) не содержит объектов.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: empty ((graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(mnas-graph:empty graph))
(let ((graph (mnas-graph:make-graph ’()))) (mnas-graph:empty graph))

Source

empty.lisp.

Generic Function: find-backward-nodes (node graph)

@b(Описание:) обобщенная функция @b(find-backward-nodes) возвращает хеш-таблицу ближайших вершин, с которыми соединена вершина @b(node), в направлении против течения.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: find-backward-nodes ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:find-backward-nodes (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

find-backward-nodes.lisp.

Method: find-backward-nodes ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:find-backward-nodes "c" graph)) @end(code)

Source

find-backward-nodes.lisp.

Method: find-backward-nodes (node (graph <graph>))
Source

find-backward-nodes.lisp.

Generic Function: find-both-nodes (node graph)

@b(Описание:) обобщенная функция @b(find-both-nodes) возвращает хеш-таблицу ближайших вершин, с которыми соединена вершина @b(node), в направлениях по и против течения.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: find-both-nodes ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:find-both-nodes "c" graph))
@end(code)

Source

find-both-nodes.lisp.

Method: find-both-nodes ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:find-both-nodes
(mnas-graph:find-node "c" graph) graph)) @end(code)

Source

find-both-nodes.lisp.

Generic Function: find-edge (name graph)

@b(Описание:) обобщенная функция @b(find-edge) возвращает ребро с именем @b(name), поиск которого осуществляется среди ребер графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: find-edge ((name string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(mnas-graph:find-edge "a->c" graph))
@end(code)

Source

find-edge.lisp.

Generic Function: find-forward-nodes (node graph)

@b(Описание:) обобщенная функция @b(find-forward-nodes) возвращает хеш-таблицу ближайших вершин, с которыми соединена вершина @b(node), в направлении течения.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: find-forward-nodes ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:find-forward-nodes (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

find-forward-nodes.lisp.

Method: find-forward-nodes ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:find-forward-nodes "c" graph)) @end(code)

Source

find-forward-nodes.lisp.

Method: find-forward-nodes (node (graph <graph>))
Source

find-forward-nodes.lisp.

Generic Function: find-node (name graph)

@b(Описание:) обобщенная функция @b(find-node) возвращает ребро с именем @b(name), поиск которого осуществляется среди ребер графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: find-node ((name string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(mnas-graph:find-node "c" graph))
@end(code)

Source

find-node.lisp.

Generic Reader: head (object)
Generic Writer: (setf head) (object)
Package

mnas-graph.

Methods
Reader Method: head ((<edge> <edge>))
Writer Method: (setf head) ((<edge> <edge>))

Конечная вершина ребра

Source

edge.lisp.

Target Slot

head.

Generic Function: hierarchy-node-names (graph)

@b(Описание:) обобщенная функция @b(hierarchy-nodes) возвращает список имен вершин в иерархическом порядке:

@begin(list)
@item(изолированные вершины;)
@item(вершины источники.)
@end(list)

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: hierarchy-node-names (gr)
Source

clear.lisp.

Generic Function: ids (hash-table &key sort predicate)

@b(Описание:) обобщенная функция @b(ids) возвращает список имен ключей, находящихся в хеш-таблице @b(hash-table). Если параметр @(sort) равен t возвращаемый список сортируется по предикату @b(predicate).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: ids ((graph <graph>) &key sort predicate)

@b(Описание:) метод @b(ids) возвращает список в формате согласованном с фунцией make-graph.

Source

ids.lisp.

Method: ids ((ht hash-table) &key sort predicate)

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(list
(mnas-graph:ids (mnas-graph:nodes graph)) (mnas-graph:ids (mnas-graph:edges graph)))) @end(code)

Source

ids.lisp.

Generic Function: inlet-edges (node graph)

@b(Описание:) обобщенная функция @b(inlet-edges) возвращает хеш-таблицу ребер, входящих в вершину @b(node) графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: inlet-edges ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:inlet-edges "c" graph))
@end(code)

Source

inlet-edges.lisp.

Method: inlet-edges ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e")
("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(mnas-graph:inlet-edges (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

inlet-edges.lisp.

Generic Function: inlet-nodes (graph)

@b(Описание:) обобщенная функция @b(inlet-nodes) возвращает хеш-таблицу вершин-стоков для графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: inlet-nodes ((graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (make-random-graph :node-max-number 16))) (mnas-graph/view:view-graph graph)
(inlet-nodes graph))
@end(code)

Source

inlet-nodes.lisp.

Generic Function: inlet-p (node graph)

@b(Описание:) обобщенная функция @b(inlet-p) возвращает t, если вершина @b(node) графа @b(graph) является стоком.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: inlet-p ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(inlet-p "d" graph))
@end(code)

Source

inlet-p.lisp.

Method: inlet-p ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(inlet-p (mnas-graph:find-node "d" graph) graph)) @end(code)

Source

inlet-p.lisp.

Generic Function: insert-to (obj container)

@b(Описание:) обобщенная_функция @b(insert-to) возвращает объект @b(obj), добавляемый в @b(container).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: insert-to ((name string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(insert-to "l" graph))

Source

insert-to.lisp.

Method: insert-to ((edge <edge>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(insert-to
(make-instance ’mnas-graph:<edge>
:tail (mnas-graph:find-node "a" graph) :head (mnas-graph:find-node "g" graph)) graph))

Source

insert-to.lisp.

Method: insert-to ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e")
("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(insert-to (make-instance ’mnas-graph:<node> :name "l") graph))

Source

insert-to.lisp.

Generic Function: into-container-p (obj container)

@b(Описание:) обобщенная функция @b(into-container-p) возвращает t если объект (obj) находится в контейнере @b(container).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: into-container-p ((edge <edge>) (graph <graph>))
Source

into-container-p.lisp.

Method: into-container-p ((node <node>) (graph <graph>))
Source

into-container-p.lisp.

Generic Function: isolated-nodes (graph)

@b(Описание:) обобщенная функция @b(inlet-nodes) возвращает хеш-таблицу изолированных вершин для графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: isolated-nodes ((graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (make-random-graph :node-max-number 16))) (mnas-graph/view:view-graph graph)
(mnas-graph:ids (mnas-graph:isolated-nodes graph))) @end(code)

Source

isolated-nodes.lisp.

Generic Function: isolated-p (node graph)

@b(Описание:) обобщенная функция @b(isolated-p) возвращает t, если вершина @b(node) графа @b(graph) является изолированой.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: isolated-p ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(isolated-p "k" graph))
@end(code)

Source

isolated-p.lisp.

Method: isolated-p ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(isolated-p (mnas-graph:find-node "k" graph) graph)) @end(code)

Source

isolated-p.lisp.

Generic Function: name (obj)

@b(Описание:) обобщенная функция @b(name) возвращает имя объекта.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: name ((edge <edge>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(name (mnas-graph:find-edge "c->d" graph)))

Source

name.lisp.

Reader Method: name ((<node> <node>))

Имя вершины

Source

node.lisp.

Target Slot

name.

Generic Writer: (setf name) (object)
Package

mnas-graph.

Methods
Writer Method: (setf name) ((<node> <node>))

Имя вершины

Source

node.lisp.

Target Slot

name.

Generic Function: node-names (graph)

@b(Описание:) обобщенная функция @b(edge-names) возвращает отсортированный список имен вуршин графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: node-names ((g <graph>))

@b(Пример использования:) @begin[lang=lisp](code)
(let ((graph (mnas-graph:make-random-graph))) (mnas-graph:node-names graph)) @end(code)

Source

node-names.lisp.

Generic Reader: nodes (object)
Generic Writer: (setf nodes) (object)
Package

mnas-graph.

Methods
Reader Method: nodes ((<graph> <graph>))
Writer Method: (setf nodes) ((<graph> <graph>))

Хешированная таблица вершин графа. Ключ - вершина; значение nil.

Source

graph.lisp.

Target Slot

nodes.

Generic Function: outlet-edges (node graph)

@b(Описание:) обобщенная функция @b(inlet-edges) возвращает хеш-таблицу ребер, исходящих из вершины @b(node) графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: outlet-edges ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k")))) (mnas-graph:outlet-edges "c" graph))
@end(code)

Source

outlet-edges.lisp.

Method: outlet-edges ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e")
("e" "f") ("e" "g") ("h" "j") ("b" "f"))
:nodes ’("k"))))
(mnas-graph:outlet-edges (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

outlet-edges.lisp.

Generic Function: outlet-nodes (graph)

@b(Описание:) обобщенная функция @b(outlet-nodes) возвращает хеш-таблицу вершин-истоков для графа @b(graph).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: outlet-nodes ((graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (make-random-graph :node-max-number 16))) (mnas-graph/view:view-graph graph)
(outlet-nodes graph))
@end(code)

Source

outlet-nodes.lisp.

Generic Function: outlet-p (node graph)

@b(Описание:) обобщенная функция @b(outlet-p) возвращает t, если вершина @b(node) графа @b(graph) является источником.

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: outlet-p ((node string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(outlet-p "a" graph))
@end(code)

Source

outlet-p.lisp.

Method: outlet-p ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(outlet-p (mnas-graph:find-node "a" graph) graph)) @end(code)

Source

outlet-p.lisp.

Generic Reader: owner (object)
Generic Writer: (setf owner) (object)
Package

mnas-graph.

Methods
Reader Method: owner ((<node> <node>))
Writer Method: (setf owner) ((<node> <node>))

Владелец вершины объект типа graph

Source

node.lisp.

Target Slot

owner.

Generic Function: path (beg-node end-node graph &key direction)

@b(Описание:) обобщенная функция @b(path) возвращает список вершин, представляющий кратчайший путь из вершины @b(beg-node) до вершины @b(end-node) графа @b(graph).

Package

mnas-graph/alg.

Source

alg.lisp.

Methods
Method: path ((beg-node <node>) (end-node <node>) (graph <graph>) &key direction)
Generic Function: remove-from (obj container)

@b(Описание:) обобщенная функция @b(remove-from) возвращает объект @b(obj), удаляемый из контейнера @b(container).

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: remove-from ((name string) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(list
(remove-from "c" graph)
(remove-from "b->f" graph)))
@end(code)

Source

remove-from.lisp.

Method: remove-from ((edge <edge>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(remove-from (mnas-graph:find-edge "c->d" graph) graph)) @end(code)

Source

remove-from.lisp.

Method: remove-from ((node <node>) (graph <graph>))

@b(Пример использования:)
@begin[lang=lisp](code)
(let ((graph (mnas-graph:make-graph
’(("a" "c") ("c" "d") ("c" "g") ("c" "e") ("e" "f") ("e" "g") ("h" "j") ("b" "f")) :nodes ’("k"))))
(remove-from (mnas-graph:find-node "c" graph) graph)) @end(code)

Source

remove-from.lisp.

Generic Reader: tail (object)
Generic Writer: (setf tail) (object)
Package

mnas-graph.

Methods
Reader Method: tail ((<edge> <edge>))
Writer Method: (setf tail) ((<edge> <edge>))

Начальная вершина ребра

Source

edge.lisp.

Target Slot

tail.

Generic Function: to-graphviz (obj stream)

@b(Описание:) обобщенная функция @b(to-graphviz) выполняет объекта
@b(obj) в поток @b(stream) в формате программы @link[uri="https://graphviz.org"](Graphviz).

Package

mnas-graph/view.

Source

view.lisp.

Methods
Method: to-graphviz ((g <graph>) s)

@b(Описание:) метод @b(to-graphviz) выполняет вывод графа @b(g) в поток @(s).

Method: to-graphviz ((edge <edge>) s)

@b(Описание:) метод @b(to-graphviz) выполняет вывод ребра графа @b(edge) в поток @(s).

Method: to-graphviz ((n <node>) s)

@b(Описание:) метод @b(to-graphviz) выполняет вывод вершины графа @b(n) в поток @(s).

Generic Function: to-list (edge)
Package

mnas-graph.

Methods
Method: to-list ((edge <edge>))
Source

ids.lisp.

Generic Function: to-string (obj)

@b(Описание:) обобщенная функция @b(to-string) Выполняет перобразование объекта в строку

Package

mnas-graph.

Source

generics.lisp.

Methods
Method: to-string ((x <edge>))

@b(Описание:) to-string !!!!!!

Source

to-string.lisp.

Method: to-string ((x <node>))

@b(Описание:) to-string !!!!!!

Source

to-string.lisp.

Method: to-string (val)

@b(Описание:) to-string !!!!!!

Source

to-string.lisp.

Generic Function: view-graph (graph &key fpath fname graphviz-prg out-type dpi viewer)

@b(Описание:) обобщенная функция @b(view-graph) выполняет визуализацию графа @b(graph).

@b(Переменые:)
@begin(list)
@item(fpath - каталог для вывода результатов работы программы;)
@item(fname - имя gv-файла;)
@item(out-type - тип выходного файла;)
@item(dpi - количество точек на дюйм;)
@item(viewer - программа для просмотра графа;)
@item(graphviz-prg - программа для генерации графа.)
@end(list)

graphviz-prg может принимать одно из следующих значений:
@begin(list)
@item(:filter-dot;)
@item(:filter-neato;)
@item(:filter-twopi;)
@item(:filter-circo;)
@item(:filter-fdp;)
@item(:filter-sfdp;)
@item(:filter-patchwork.)
@end(list)

Package

mnas-graph/view.

Source

view.lisp.

Methods
Method: view-graph ((g <graph>) &key fpath fname graphviz-prg out-type dpi viewer)

@b(Описание:) метод @b(view-graph) выполняет визализацию графа @b(g).

Выполнение метода проходит в три этапа:
@begin(enum)
@item(Вывод графа @b(g) в gv-файл в формате программы @link[uri="https://graphviz.org"](Graphviz).)
@item(Преобразование gv-файла в формат @b(out-type) при помощи программы @link[uri="https://graphviz.org"](Graphviz).)
@item(Визуализация результата вывода просмотрщиком, заданным параметром @b(viewer).) @end(enum)

Generic Function: view-graph-new (g pv &key fpath fname graphviz-prg out-type dpi viewer)
Package

mnas-graph/view.

Methods
Method: view-graph-new ((g <graph>) (pv <printer-viewer>) &key fpath fname graphviz-prg out-type dpi viewer)
Source

view.lisp.

Generic Reader: weight (object)
Generic Writer: (setf weight) (object)
Package

mnas-graph.

Methods
Reader Method: weight ((<edge> <edge>))
Writer Method: (setf weight) ((<edge> <edge>))

Определяет вес (длину) ребра.

Source

edge.lisp.

Target Slot

weight.


6.1.4 Standalone methods

Method: initialize-instance ((pv <svg-printer-viewer>) &key graphviz-prg dpi executable out-type)
Source

printer-viewer.lisp.

Method: initialize-instance ((pv <pdf-printer-viewer>) &key graphviz-prg dpi executable out-type)
Source

printer-viewer.lisp.

Method: initialize-instance :after ((edge <edge>) &key owner)
Source

edge.lisp.

Method: initialize-instance :after ((x <node>) &key owner)
Source

node.lisp.

Method: print-object :after ((pv <printer-viewer>) s)
Source

printer-viewer.lisp.

Method: print-object :after ((layers <layers>) s)
Source

attributes.lisp.

Method: print-object :after ((peripheries <peripheries>) s)
Source

attributes.lisp.

Method: print-object :after ((gradientangle <gradientangle>) s)
Source

attributes.lisp.

Method: print-object :after ((epsilon <epsilon>) s)
Source

attributes.lisp.

Method: print-object :after ((diredgeconstraints <diredgeconstraints>) s)
Source

attributes.lisp.

Method: print-object :after ((model <model>) s)
Source

attributes.lisp.

Method: print-object :after ((tailport <tailport>) s)
Source

attributes.lisp.

Method: print-object :after ((samplepoints <samplepoints>) s)
Source

attributes.lisp.

Method: print-object :after ((fontcolor <fontcolor>) s)
Source

attributes.lisp.

Method: print-object :after ((clusterrank <clusterrank>) s)
Source

attributes.lisp.

Method: print-object :after ((lwidth <lwidth>) s)
Source

attributes.lisp.

Method: print-object :after ((labelangle <labelangle>) s)
Source

attributes.lisp.

Method: print-object :after ((ordering <ordering>) s)
Source

attributes.lisp.

Method: print-object :after ((dir <dir>) s)
Source

attributes.lisp.

Method: print-object :after ((label_scheme <label_scheme>) s)
Source

attributes.lisp.

Method: print-object :after ((shape <shape>) s)
Source

attributes.lisp.

Method: print-object :after ((charset <charset>) s)
Source

attributes.lisp.

Method: print-object :after ((decorate <decorate>) s)
Source

attributes.lisp.

Method: print-object :after ((mclimit <mclimit>) s)
Source

attributes.lisp.

Method: print-object :after ((lhead <lhead>) s)
Source

attributes.lisp.

Method: print-object :after ((splines <splines>) s)
Source

attributes.lisp.

Method: print-object :after ((xlabel <xlabel>) s)
Source

attributes.lisp.

Method: print-object :after ((truecolor <truecolor>) s)
Source

attributes.lisp.

Method: print-object :after ((defaultdist <defaultdist>) s)
Source

attributes.lisp.

Method: print-object :after ((labelloc <labelloc>) s)
Source

attributes.lisp.

Method: print-object :after ((labeltooltip <labeltooltip>) s)
Source

attributes.lisp.

Method: print-object :after ((mode <mode>) s)
Source

attributes.lisp.

Method: print-object :after ((start <start>) s)
Source

attributes.lisp.

Method: print-object :after ((headclip <headclip>) s)
Source

attributes.lisp.

Method: print-object :after ((tail_lp <tail_lp>) s)
Source

attributes.lisp.

Method: print-object :after ((headlabel <headlabel>) s)
Source

attributes.lisp.

Method: print-object :after ((rankdir <rankdir>) s)
Source

attributes.lisp.

Method: print-object :after ((labelfontname <labelfontname>) s)
Source

attributes.lisp.

Method: print-object :after ((sides <sides>) s)
Source

attributes.lisp.

Method: print-object :after ((labelfontcolor <labelfontcolor>) s)
Source

attributes.lisp.

Method: print-object :after ((pencolor <pencolor>) s)
Source

attributes.lisp.

Method: print-object :after ((searchsize <searchsize>) s)
Source

attributes.lisp.

Method: print-object :after ((rotation <rotation>) s)
Source

attributes.lisp.

Method: print-object :after ((labelfloat <labelfloat>) s)
Source

attributes.lisp.

Method: print-object :after ((sortv <sortv>) s)
Source

attributes.lisp.

Method: print-object :after ((xlp <xlp>) s)
Source

attributes.lisp.

Method: print-object :after ((constraint <constraint>) s)
Source

attributes.lisp.

Method: print-object :after ((labeltarget <labeltarget>) s)
Source

attributes.lisp.

Method: print-object :after ((href <href>) s)
Source

attributes.lisp.

Method: print-object :after ((pagedir <pagedir>) s)
Source

attributes.lisp.

Method: print-object :after ((newrank <newrank>) s)
Source

attributes.lisp.

Method: print-object :after ((labelhref <labelhref>) s)
Source

attributes.lisp.

Method: print-object :after ((pad <pad>) s)
Source

attributes.lisp.

Method: print-object :after ((fixedsize <fixedsize>) s)
Source

attributes.lisp.

Method: print-object :after ((group <group>) s)
Source

attributes.lisp.

Method: print-object :after ((colorscheme <colorscheme>) s)
Source

attributes.lisp.

Method: print-object :after ((headtooltip <headtooltip>) s)
Source

attributes.lisp.

Method: print-object :after ((repulsiveforce <repulsiveforce>) s)
Source

attributes.lisp.

Method: print-object :after ((shapefile <shapefile>) s)
Source

attributes.lisp.

Method: print-object :after ((edge <edge>) s)
Source

edge.lisp.

Method: print-object ((edge <edge>) s)
Source

edge.lisp.

Method: print-object :after ((fontsize <fontsize>) s)
Source

attributes.lisp.

Method: print-object :after ((class <class>) s)
Source

attributes.lisp.

Method: print-object :after ((layerlistsep <layerlistsep>) s)
Source

attributes.lisp.

Method: print-object :after ((levels <levels>) s)
Source

attributes.lisp.

Method: print-object :after ((pos <pos>) s)
Source

attributes.lisp.

Method: print-object :after ((edgehref <edgehref>) s)
Source

attributes.lisp.

Method: print-object :after ((imagepos <imagepos>) s)
Source

attributes.lisp.

Method: print-object :after ((penwidth <penwidth>) s)
Source

attributes.lisp.

Method: print-object :after ((tailhref <tailhref>) s)
Source

attributes.lisp.

Method: print-object :after ((nslimit1 <nslimit1>) s)
Source

attributes.lisp.

Method: print-object :after ((scale <scale>) s)
Source

attributes.lisp.

Method: print-object :after ((image <image>) s)
Source

attributes.lisp.

Method: print-object :after ((smoothing <smoothing>) s)
Source

attributes.lisp.

Method: print-object :after ((mindist <mindist>) s)
Source

attributes.lisp.

Method: print-object :after ((labelfontsize <labelfontsize>) s)
Source

attributes.lisp.

Method: print-object :after ((showboxes <showboxes>) s)
Source

attributes.lisp.

Method: print-object :after ((xdotversion <xdotversion>) s)
Source

attributes.lisp.

Method: print-object :after ((normalize <normalize>) s)
Source

attributes.lisp.

Method: print-object :after ((concentrate <concentrate>) s)
Source

attributes.lisp.

Method: print-object :after ((weight <weight>) s)
Source

attributes.lisp.

Method: print-object :after ((levelsgap <levelsgap>) s)
Source

attributes.lisp.

Method: print-object :after ((color <color>) s)
Source

attributes.lisp.

Method: print-object :after ((skew <skew>) s)
Source

attributes.lisp.

Method: print-object :after ((height <height>) s)
Source

attributes.lisp.

Method: print-object :after ((arrowsize <arrowsize>) s)
Source

attributes.lisp.

Method: print-object :after ((nojustify <nojustify>) s)
Source

attributes.lisp.

Method: print-object :after ((samehead <samehead>) s)
Source

attributes.lisp.

Method: print-object :after ((headhref <headhref>) s)
Source

attributes.lisp.

Method: print-object :after ((vertices <vertices>) s)
Source

attributes.lisp.

Method: print-object :after ((head_lp <head_lp>) s)
Source

attributes.lisp.

Method: print-object :after ((layersep <layersep>) s)
Source

attributes.lisp.

Method: print-object :after ((sametail <sametail>) s)
Source

attributes.lisp.

Method: print-object :after ((overlap_scaling <overlap_scaling>) s)
Source

attributes.lisp.

Method: print-object :after ((label <label>) s)
Source

attributes.lisp.

Method: print-object :after ((dimen <dimen>) s)
Source

attributes.lisp.

Method: print-object :after ((width <width>) s)
Source

attributes.lisp.

Method: print-object :after ((arrowtail <arrowtail>) s)
Source

attributes.lisp.

Method: print-object :after ((quadtree <quadtree>) s)
Source

attributes.lisp.

Method: print-object :after ((center <center>) s)
Source

attributes.lisp.

Method: print-object :after ((pack <pack>) s)
Source

attributes.lisp.

Method: print-object :after ((labeljust <labeljust>) s)
Source

attributes.lisp.

Method: print-object :after ((style <style>) s)
Source

attributes.lisp.

Method: print-object :after ((rank <rank>) s)
Source

attributes.lisp.

Method: print-object :after ((imagescale <imagescale>) s)
Source

attributes.lisp.

Method: print-object :after ((x <graph>) s)
Source

graph.lisp.

Method: print-object ((x <graph>) s)
Source

graph.lisp.

Method: print-object :after ((fontnames <fontnames>) s)
Source

attributes.lisp.

Method: print-object :after ((headtarget <headtarget>) s)
Source

attributes.lisp.

Method: print-object :after ((nodesep <nodesep>) s)
Source

attributes.lisp.

Method: print-object :after ((remincross <remincross>) s)
Source

attributes.lisp.

Method: print-object :after ((pin <pin>) s)
Source

attributes.lisp.

Method: print-object :after ((voro_margin <voro_margin>) s)
Source

attributes.lisp.

Method: print-object :after ((dpi <dpi>) s)
Source

attributes.lisp.

Method: print-object :after ((layer <layer>) s)
Source

attributes.lisp.

Method: print-object :after ((ratio <ratio>) s)
Source

attributes.lisp.

Method: print-object :after ((tailclip <tailclip>) s)
Source

attributes.lisp.

Method: print-object :after ((page <page>) s)
Source

attributes.lisp.

Method: print-object :after ((sep <sep>) s)
Source

attributes.lisp.

Method: print-object :after ((root <root>) s)
Source

attributes.lisp.

Method: print-object :after ((overlap_shrink <overlap_shrink>) s)
Source

attributes.lisp.

Method: print-object :after ((landscape <landscape>) s)
Source

attributes.lisp.

Method: print-object :after ((bgcolor <bgcolor>) s)
Source

attributes.lisp.

Method: print-object :after ((lp <lp>) s)
Source

attributes.lisp.

Method: print-object :after ((tooltip <tooltip>) s)
Source

attributes.lisp.

Method: print-object :after ((margin <margin>) s)
Source

attributes.lisp.

Method: print-object :after ((forcelabels <forcelabels>) s)
Source

attributes.lisp.

Method: print-object :after ((regular <regular>) s)
Source

attributes.lisp.

Method: print-object :after ((tailtooltip <tailtooltip>) s)
Source

attributes.lisp.

Method: print-object :after ((dim <dim>) s)
Source

attributes.lisp.

Method: print-object :after ((esep <esep>) s)
Source

attributes.lisp.

Method: print-object :after ((edgetooltip <edgetooltip>) s)
Source

attributes.lisp.

Method: print-object :after ((fontname <fontname>) s)
Source

attributes.lisp.

Method: print-object :after ((nslimit <nslimit>) s)
Source

attributes.lisp.

Method: print-object :after ((comment <comment>) s)
Source

attributes.lisp.

Method: print-object :after ((layout <layout>) s)
Source

attributes.lisp.

Method: print-object :after ((fillcolor <fillcolor>) s)
Source

attributes.lisp.

Method: print-object :after ((rotate <rotate>) s)
Source

attributes.lisp.

Method: print-object :after ((node <node>) s)
Source

node.lisp.

Method: print-object ((node <node>) s)
Source

node.lisp.

Method: print-object :after ((maxiter <maxiter>) s)
Source

attributes.lisp.

Method: print-object :after ((edgetarget <edgetarget>) s)
Source

attributes.lisp.

Method: print-object :after ((taillabel <taillabel>) s)
Source

attributes.lisp.

Method: print-object :after ((packmode <packmode>) s)
Source

attributes.lisp.

Method: print-object :after ((outputorder <outputorder>) s)
Source

attributes.lisp.

Method: print-object :after ((size <size>) s)
Source

attributes.lisp.

Method: print-object :after ((area <area>) s)
Source

attributes.lisp.

Method: print-object :after ((arrowhead <arrowhead>) s)
Source

attributes.lisp.

Method: print-object :after ((overlap <overlap>) s)
Source

attributes.lisp.

Method: print-object :after ((layerselect <layerselect>) s)
Source

attributes.lisp.

Method: print-object :after ((headport <headport>) s)
Source

attributes.lisp.

Method: print-object :after ((bb <bb>) s)
Source

attributes.lisp.

Method: print-object :after ((rects <rects>) s)
Source

attributes.lisp.

Method: print-object :after ((inputscale <inputscale>) s)
Source

attributes.lisp.

Method: print-object :after ((id <id>) s)
Source

attributes.lisp.

Method: print-object :after ((notranslate <notranslate>) s)
Source

attributes.lisp.

Method: print-object :after ((minlen <minlen>) s)
Source

attributes.lisp.

Method: print-object :after ((ranksep <ranksep>) s)
Source

attributes.lisp.

Method: print-object :after ((mosek <mosek>) s)
Source

attributes.lisp.

Method: print-object :after ((tailtarget <tailtarget>) s)
Source

attributes.lisp.

Method: print-object :after ((quantum <quantum>) s)
Source

attributes.lisp.

Method: print-object :after ((target <target>) s)
Source

attributes.lisp.

Method: print-object :after ((lheight <lheight>) s)
Source

attributes.lisp.

Method: print-object :after ((distortion <distortion>) s)
Source

attributes.lisp.

Method: print-object :after ((stylesheet <stylesheet>) s)
Source

attributes.lisp.

Method: print-object :after ((compound <compound>) s)
Source

attributes.lisp.

Method: print-object :after ((fontpath <fontpath>) s)
Source

attributes.lisp.

Method: print-object :after ((imagepath <imagepath>) s)
Source

attributes.lisp.

Method: print-object :after ((resolution <resolution>) s)
Source

attributes.lisp.

Method: print-object :after ((labeldistance <labeldistance>) s)
Source

attributes.lisp.

Method: print-object :after ((orientation <orientation>) s)
Source

attributes.lisp.

Method: print-object :after ((len <len>) s)
Source

attributes.lisp.

Method: print-object :after ((viewport <viewport>) s)
Source

attributes.lisp.

Method: print-object :after ((z <z>) s)
Source

attributes.lisp.

Method: print-object :after ((ltail <ltail>) s)
Source

attributes.lisp.


6.1.5 Classes

Class: <area>

Attribute: @link[uri="https://graphviz.org/docs/attrs/area/"](area)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-area

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:area

Readers

attr-area.

Writers

(setf attr-area).

Class: <arrowhead>

Attribute: @link[uri="https://graphviz.org/docs/attrs/arrowhead/"](arrowhead)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-arrowhead

Type: @link[uri="https://graphviz.org/docs/attr-types/arrowType/"](arrowType)

Initargs

:arrowhead

Readers

attr-arrowhead.

Writers

(setf attr-arrowhead).

Class: <arrowsize>

Attribute: @link[uri="https://graphviz.org/docs/attrs/arrowsize/"](arrowsize)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-arrowsize

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:arrowsize

Readers

attr-arrowsize.

Writers

(setf attr-arrowsize).

Class: <arrowtail>

Attribute: @link[uri="https://graphviz.org/docs/attrs/arrowtail/"](arrowtail)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-arrowtail

Type: @link[uri="https://graphviz.org/docs/attr-types/arrowType/"](arrowType)

Initargs

:arrowtail

Readers

attr-arrowtail.

Writers

(setf attr-arrowtail).

Class: <bb>

Attribute: @link[uri="https://graphviz.org/docs/attrs/bb/"](bb)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-bb

Type: @link[uri="https://graphviz.org/docs/attr-types/rect/"](rect)

Initargs

:bb

Readers

attr-bb.

Writers

(setf attr-bb).

Class: <bgcolor>

Attribute: @link[uri="https://graphviz.org/docs/attrs/bgcolor/"](bgcolor)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<cluster-attributes>.

Direct methods
Direct slots
Slot: sl-bgcolor

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color), @link[uri="https://graphviz.org/docs/attr-types/colorList/"](colorList)

Initargs

:bgcolor

Readers

attr-bgcolor.

Writers

(setf attr-bgcolor).

Class: <center>

Attribute: @link[uri="https://graphviz.org/docs/attrs/center/"](center)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-center

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:center

Readers

attr-center.

Writers

(setf attr-center).

Class: <charset>

Attribute: @link[uri="https://graphviz.org/docs/attrs/charset/"](charset)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-charset

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:charset

Readers

attr-charset.

Writers

(setf attr-charset).

Class: <class>

Attribute: @link[uri="https://graphviz.org/docs/attrs/class/"](class)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-class

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:class

Readers

attr-class.

Writers

(setf attr-class).

Class: <clusterrank>

Attribute: @link[uri="https://graphviz.org/docs/attrs/clusterrank/"](clusterrank)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-clusterrank

Type: @link[uri="https://graphviz.org/docs/attr-types/clusterMode/"](clusterMode)

Initargs

:clusterrank

Readers

attr-clusterrank.

Writers

(setf attr-clusterrank).

Class: <color>

Attribute: @link[uri="https://graphviz.org/docs/attrs/color/"](color)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-color

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color), @link[uri="https://graphviz.org/docs/attr-types/colorList/"](colorList)

Initargs

:color

Readers

attr-color.

Writers

(setf attr-color).

Class: <colorscheme>

Attribute: @link[uri="https://graphviz.org/docs/attrs/colorscheme/"](colorscheme)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-colorscheme

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:colorscheme

Readers

attr-colorscheme.

Writers

(setf attr-colorscheme).

Class: <comment>

Attribute: @link[uri="https://graphviz.org/docs/attrs/comment/"](comment)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-comment

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:comment

Readers

attr-comment.

Writers

(setf attr-comment).

Class: <compound>

Attribute: @link[uri="https://graphviz.org/docs/attrs/compound/"](compound)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-compound

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:compound

Readers

attr-compound.

Writers

(setf attr-compound).

Class: <concentrate>

Attribute: @link[uri="https://graphviz.org/docs/attrs/concentrate/"](concentrate)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-concentrate

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:concentrate

Readers

attr-concentrate.

Writers

(setf attr-concentrate).

Class: <constraint>

Attribute: @link[uri="https://graphviz.org/docs/attrs/constraint/"](constraint)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-constraint

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:constraint

Readers

attr-constraint.

Writers

(setf attr-constraint).

Class: <decorate>

Attribute: @link[uri="https://graphviz.org/docs/attrs/decorate/"](decorate)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-decorate

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:decorate

Readers

attr-decorate.

Writers

(setf attr-decorate).

Class: <defaultdist>

Attribute: @link[uri="https://graphviz.org/docs/attrs/defaultdist/"](defaultdist)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-defaultdist

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:defaultdist

Readers

attr-defaultdist.

Writers

(setf attr-defaultdist).

Class: <dim>

Attribute: @link[uri="https://graphviz.org/docs/attrs/dim/"](dim)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-dim

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:dim

Readers

attr-dim.

Writers

(setf attr-dim).

Class: <dimen>

Attribute: @link[uri="https://graphviz.org/docs/attrs/dimen/"](dimen)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-dimen

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:dimen

Readers

attr-dimen.

Writers

(setf attr-dimen).

Class: <dir>

Attribute: @link[uri="https://graphviz.org/docs/attrs/dir/"](dir)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-dir

Type: @link[uri="https://graphviz.org/docs/attr-types/dirType/"](dirType)

Initargs

:dir

Readers

attr-dir.

Writers

(setf attr-dir).

Class: <diredgeconstraints>

Attribute: @link[uri="https://graphviz.org/docs/attrs/diredgeconstraints/"](diredgeconstraints)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-diredgeconstraints

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:diredgeconstraints

Readers

attr-diredgeconstraints.

Writers

(setf attr-diredgeconstraints).

Class: <distortion>

Attribute: @link[uri="https://graphviz.org/docs/attrs/distortion/"](distortion)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-distortion

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:distortion

Readers

attr-distortion.

Writers

(setf attr-distortion).

Class: <dpi>

Attribute: @link[uri="https://graphviz.org/docs/attrs/dpi/"](dpi)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-dpi

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:dpi

Readers

attr-dpi.

Writers

(setf attr-dpi).

Class: <edge>

@b(Описание:) класс @b(<edge>) представляет ребро графа.

Package

mnas-graph.

Source

edge.lisp.

Direct superclasses

<edge-attributes>.

Direct methods
Direct slots
Slot: tail

Начальная вершина ребра

Initargs

:tail

Readers

tail.

Writers

(setf tail).

Slot: head

Конечная вершина ребра

Initargs

:head

Readers

head.

Writers

(setf head).

Slot: weight

Определяет вес (длину) ребра.

Initform

1

Initargs

:weight

Readers

weight.

Writers

(setf weight).

Class: <edgehref>

Attribute: @link[uri="https://graphviz.org/docs/attrs/edgehref/"](edgehref)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-edgehref

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:edgehref

Readers

attr-edgehref.

Writers

(setf attr-edgehref).

Class: <edgetarget>

Attribute: @link[uri="https://graphviz.org/docs/attrs/edgetarget/"](edgetarget)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-edgetarget

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:edgetarget

Readers

attr-edgetarget.

Writers

(setf attr-edgetarget).

Class: <edgetooltip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/edgetooltip/"](edgetooltip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-edgetooltip

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:edgetooltip

Readers

attr-edgetooltip.

Writers

(setf attr-edgetooltip).

Class: <epsilon>

Attribute: @link[uri="https://graphviz.org/docs/attrs/epsilon/"](epsilon)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-epsilon

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:epsilon

Readers

attr-epsilon.

Writers

(setf attr-epsilon).

Class: <esep>

Attribute: @link[uri="https://graphviz.org/docs/attrs/esep/"](esep)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-esep

Type: @link[uri="https://graphviz.org/docs/attr-types/addDouble/"](addDouble), @link[uri="https://graphviz.org/docs/attr-types/addPoint/"](addPoint)

Initargs

:esep

Readers

attr-esep.

Writers

(setf attr-esep).

Class: <fillcolor>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fillcolor/"](fillcolor)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-fillcolor

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color), @link[uri="https://graphviz.org/docs/attr-types/colorList/"](colorList)

Initargs

:fillcolor

Readers

attr-fillcolor.

Writers

(setf attr-fillcolor).

Class: <fixedsize>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fixedsize/"](fixedsize)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-fixedsize

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:fixedsize

Readers

attr-fixedsize.

Writers

(setf attr-fixedsize).

Class: <fontcolor>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fontcolor/"](fontcolor)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-fontcolor

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color)

Initargs

:fontcolor

Readers

attr-fontcolor.

Writers

(setf attr-fontcolor).

Class: <fontname>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fontname/"](fontname)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-fontname

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:fontname

Readers

attr-fontname.

Writers

(setf attr-fontname).

Class: <fontnames>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fontnames/"](fontnames)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-fontnames

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:fontnames

Readers

attr-fontnames.

Writers

(setf attr-fontnames).

Class: <fontpath>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fontpath/"](fontpath)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-fontpath

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:fontpath

Readers

attr-fontpath.

Writers

(setf attr-fontpath).

Class: <fontsize>

Attribute: @link[uri="https://graphviz.org/docs/attrs/fontsize/"](fontsize)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-fontsize

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:fontsize

Readers

attr-fontsize.

Writers

(setf attr-fontsize).

Class: <forcelabels>

Attribute: @link[uri="https://graphviz.org/docs/attrs/forcelabels/"](forcelabels)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-forcelabels

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:forcelabels

Readers

attr-forcelabels.

Writers

(setf attr-forcelabels).

Class: <gradientangle>

Attribute: @link[uri="https://graphviz.org/docs/attrs/gradientangle/"](gradientangle)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-gradientangle

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:gradientangle

Readers

attr-gradientangle.

Writers

(setf attr-gradientangle).

Class: <graph>

@b(Описание:) класс @b(<graph>) представляет граф.

Package

mnas-graph.

Source

graph.lisp.

Direct methods
Direct slots
Slot: nodes

Хешированная таблица вершин графа. Ключ - вершина; значение nil.

Initform

(make-hash-table)

Readers

nodes.

Writers

(setf nodes).

Slot: ht-node-names

Хешированная таблица имен вершин графа.

Initform

(make-hash-table :test (function equal))

Readers

ht-node-names.

Writers

(setf ht-node-names).

Slot: edges

Хешированная таблица ребер графа. Ключ - ребро; значение - ребро.

Initform

(make-hash-table)

Readers

edges.

Writers

(setf edges).

Slot: ht-edge-names

Хешированная таблица имен ребер графа. Ключ - строка; значение - ребро.

Initform

(make-hash-table :test (function equal))

Readers

ht-edge-names.

Writers

(setf ht-edge-names).

Slot: rankdir

Определяет направление отрисовки: TB, LR, BT, RL.

Initform

"tb"

Readers

rankdir.

Writers

(setf rankdir).

Class: <group>

Attribute: @link[uri="https://graphviz.org/docs/attrs/group/"](group)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-group

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:group

Readers

attr-group.

Writers

(setf attr-group).

Class: <head_lp>

Attribute: @link[uri="https://graphviz.org/docs/attrs/head_lp/"](head_lp)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-head_lp

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:head_lp

Readers

attr-head_lp.

Writers

(setf attr-head_lp).

Class: <headclip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/headclip/"](headclip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-headclip

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:headclip

Readers

attr-headclip.

Writers

(setf attr-headclip).

Class: <headhref>

Attribute: @link[uri="https://graphviz.org/docs/attrs/headhref/"](headhref)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-headhref

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:headhref

Readers

attr-headhref.

Writers

(setf attr-headhref).

Class: <headlabel>

Attribute: @link[uri="https://graphviz.org/docs/attrs/headlabel/"](headlabel)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-headlabel

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Initargs

:headlabel

Readers

attr-headlabel.

Writers

(setf attr-headlabel).

Class: <headport>

Attribute: @link[uri="https://graphviz.org/docs/attrs/headport/"](headport)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-headport

Type: @link[uri="https://graphviz.org/docs/attr-types/portPos/"](portPos)

Initargs

:headport

Readers

attr-headport.

Writers

(setf attr-headport).

Class: <headtarget>

Attribute: @link[uri="https://graphviz.org/docs/attrs/headtarget/"](headtarget)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-headtarget

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:headtarget

Readers

attr-headtarget.

Writers

(setf attr-headtarget).

Class: <headtooltip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/headtooltip/"](headtooltip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-headtooltip

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:headtooltip

Readers

attr-headtooltip.

Writers

(setf attr-headtooltip).

Class: <height>

Attribute: @link[uri="https://graphviz.org/docs/attrs/height/"](height)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-height

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:height

Readers

attr-height.

Writers

(setf attr-height).

Class: <href>

Attribute: @link[uri="https://graphviz.org/docs/attrs/href/"](href)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-href

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:href

Readers

attr-href.

Writers

(setf attr-href).

Class: <id>

Attribute: @link[uri="https://graphviz.org/docs/attrs/id/"](id)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-id

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:id

Readers

attr-id.

Writers

(setf attr-id).

Class: <image>

Attribute: @link[uri="https://graphviz.org/docs/attrs/image/"](image)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-image

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:image

Readers

attr-image.

Writers

(setf attr-image).

Class: <imagepath>

Attribute: @link[uri="https://graphviz.org/docs/attrs/imagepath/"](imagepath)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-imagepath

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:imagepath

Readers

attr-imagepath.

Writers

(setf attr-imagepath).

Class: <imagepos>

Attribute: @link[uri="https://graphviz.org/docs/attrs/imagepos/"](imagepos)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-imagepos

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:imagepos

Readers

attr-imagepos.

Writers

(setf attr-imagepos).

Class: <imagescale>

Attribute: @link[uri="https://graphviz.org/docs/attrs/imagescale/"](imagescale)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-imagescale

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:imagescale

Readers

attr-imagescale.

Writers

(setf attr-imagescale).

Class: <inputscale>

Attribute: @link[uri="https://graphviz.org/docs/attrs/inputscale/"](inputscale)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-inputscale

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:inputscale

Readers

attr-inputscale.

Writers

(setf attr-inputscale).

Class: <label>

Attribute: @link[uri="https://graphviz.org/docs/attrs/label/"](label)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-label

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Initargs

:label

Readers

attr-label.

Writers

(setf attr-label).

Class: <label_scheme>

Attribute: @link[uri="https://graphviz.org/docs/attrs/label_scheme/"](label_scheme)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-label_scheme

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:label_scheme

Readers

attr-label_scheme.

Writers

(setf attr-label_scheme).

Class: <labelangle>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelangle/"](labelangle)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelangle

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:labelangle

Readers

attr-labelangle.

Writers

(setf attr-labelangle).

Class: <labeldistance>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labeldistance/"](labeldistance)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labeldistance

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:labeldistance

Readers

attr-labeldistance.

Writers

(setf attr-labeldistance).

Class: <labelfloat>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelfloat/"](labelfloat)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelfloat

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:labelfloat

Readers

attr-labelfloat.

Writers

(setf attr-labelfloat).

Class: <labelfontcolor>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelfontcolor/"](labelfontcolor)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelfontcolor

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color)

Initargs

:labelfontcolor

Readers

attr-labelfontcolor.

Writers

(setf attr-labelfontcolor).

Class: <labelfontname>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelfontname/"](labelfontname)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelfontname

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:labelfontname

Readers

attr-labelfontname.

Writers

(setf attr-labelfontname).

Class: <labelfontsize>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelfontsize/"](labelfontsize)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelfontsize

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:labelfontsize

Readers

attr-labelfontsize.

Writers

(setf attr-labelfontsize).

Class: <labelhref>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelhref/"](labelhref)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelhref

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:labelhref

Readers

attr-labelhref.

Writers

(setf attr-labelhref).

Class: <labeljust>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labeljust/"](labeljust)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<cluster-attributes>.

Direct methods
Direct slots
Slot: sl-labeljust

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:labeljust

Readers

attr-labeljust.

Writers

(setf attr-labeljust).

Class: <labelloc>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labelloc/"](labelloc)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labelloc

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:labelloc

Readers

attr-labelloc.

Writers

(setf attr-labelloc).

Class: <labeltarget>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labeltarget/"](labeltarget)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labeltarget

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:labeltarget

Readers

attr-labeltarget.

Writers

(setf attr-labeltarget).

Class: <labeltooltip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/labeltooltip/"](labeltooltip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-labeltooltip

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:labeltooltip

Readers

attr-labeltooltip.

Writers

(setf attr-labeltooltip).

Class: <landscape>

Attribute: @link[uri="https://graphviz.org/docs/attrs/landscape/"](landscape)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-landscape

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:landscape

Readers

attr-landscape.

Writers

(setf attr-landscape).

Class: <layer>

Attribute: @link[uri="https://graphviz.org/docs/attrs/layer/"](layer)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-layer

Type: @link[uri="https://graphviz.org/docs/attr-types/layerRange/"](layerRange)

Initargs

:layer

Readers

attr-layer.

Writers

(setf attr-layer).

Class: <layerlistsep>

Attribute: @link[uri="https://graphviz.org/docs/attrs/layerlistsep/"](layerlistsep)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-layerlistsep

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:layerlistsep

Readers

attr-layerlistsep.

Writers

(setf attr-layerlistsep).

Class: <layers>

Attribute: @link[uri="https://graphviz.org/docs/attrs/layers/"](layers)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-layers

Type: @link[uri="https://graphviz.org/docs/attr-types/layerList/"](layerList)

Initargs

:layers

Readers

attr-layers.

Writers

(setf attr-layers).

Class: <layerselect>

Attribute: @link[uri="https://graphviz.org/docs/attrs/layerselect/"](layerselect)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-layerselect

Type: @link[uri="https://graphviz.org/docs/attr-types/layerRange/"](layerRange)

Initargs

:layerselect

Readers

attr-layerselect.

Writers

(setf attr-layerselect).

Class: <layersep>

Attribute: @link[uri="https://graphviz.org/docs/attrs/layersep/"](layersep)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-layersep

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:layersep

Readers

attr-layersep.

Writers

(setf attr-layersep).

Class: <layout>

Attribute: @link[uri="https://graphviz.org/docs/attrs/layout/"](layout)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-layout

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:layout

Readers

attr-layout.

Writers

(setf attr-layout).

Class: <len>

Attribute: @link[uri="https://graphviz.org/docs/attrs/len/"](len)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-len

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:len

Readers

attr-len.

Writers

(setf attr-len).

Class: <levels>

Attribute: @link[uri="https://graphviz.org/docs/attrs/levels/"](levels)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-levels

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:levels

Readers

attr-levels.

Writers

(setf attr-levels).

Class: <levelsgap>

Attribute: @link[uri="https://graphviz.org/docs/attrs/levelsgap/"](levelsgap)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-levelsgap

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:levelsgap

Readers

attr-levelsgap.

Writers

(setf attr-levelsgap).

Class: <lhead>

Attribute: @link[uri="https://graphviz.org/docs/attrs/lhead/"](lhead)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-lhead

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:lhead

Readers

attr-lhead.

Writers

(setf attr-lhead).

Class: <lheight>

Attribute: @link[uri="https://graphviz.org/docs/attrs/lheight/"](lheight)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<cluster-attributes>.

Direct methods
Direct slots
Slot: sl-lheight

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:lheight

Readers

attr-lheight.

Writers

(setf attr-lheight).

Class: <lp>

Attribute: @link[uri="https://graphviz.org/docs/attrs/lp/"](lp)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-lp

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:lp

Readers

attr-lp.

Writers

(setf attr-lp).

Class: <ltail>

Attribute: @link[uri="https://graphviz.org/docs/attrs/ltail/"](ltail)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-ltail

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:ltail

Readers

attr-ltail.

Writers

(setf attr-ltail).

Class: <lwidth>

Attribute: @link[uri="https://graphviz.org/docs/attrs/lwidth/"](lwidth)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<cluster-attributes>.

Direct methods
Direct slots
Slot: sl-lwidth

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:lwidth

Readers

attr-lwidth.

Writers

(setf attr-lwidth).

Class: <margin>

Attribute: @link[uri="https://graphviz.org/docs/attrs/margin/"](margin)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-margin

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:margin

Readers

attr-margin.

Writers

(setf attr-margin).

Class: <maxiter>

Attribute: @link[uri="https://graphviz.org/docs/attrs/maxiter/"](maxiter)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-maxiter

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:maxiter

Readers

attr-maxiter.

Writers

(setf attr-maxiter).

Class: <mclimit>

Attribute: @link[uri="https://graphviz.org/docs/attrs/mclimit/"](mclimit)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-mclimit

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:mclimit

Readers

attr-mclimit.

Writers

(setf attr-mclimit).

Class: <mindist>

Attribute: @link[uri="https://graphviz.org/docs/attrs/mindist/"](mindist)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-mindist

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:mindist

Readers

attr-mindist.

Writers

(setf attr-mindist).

Class: <minlen>

Attribute: @link[uri="https://graphviz.org/docs/attrs/minlen/"](minlen)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-minlen

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:minlen

Readers

attr-minlen.

Writers

(setf attr-minlen).

Class: <mode>

Attribute: @link[uri="https://graphviz.org/docs/attrs/mode/"](mode)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-mode

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:mode

Readers

attr-mode.

Writers

(setf attr-mode).

Class: <model>

Attribute: @link[uri="https://graphviz.org/docs/attrs/model/"](model)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-model

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:model

Readers

attr-model.

Writers

(setf attr-model).

Class: <mosek>

Attribute: @link[uri="https://graphviz.org/docs/attrs/mosek/"](mosek)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-mosek

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:mosek

Readers

attr-mosek.

Writers

(setf attr-mosek).

Class: <newrank>

Attribute: @link[uri="https://graphviz.org/docs/attrs/newrank/"](newrank)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-newrank

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:newrank

Readers

attr-newrank.

Writers

(setf attr-newrank).

Class: <node>

@b(Описание:) класс @b(<node>) представляет вершину графа.

Package

mnas-graph.

Source

node.lisp.

Direct superclasses

<node-attributes>.

Direct methods
Direct slots
Slot: name

Имя вершины

Initargs

:name

Readers

name.

Writers

(setf name).

Slot: owner

Владелец вершины объект типа graph

Initargs

:owner

Readers

owner.

Writers

(setf owner).

Slot: ht-inlet-edges

Хеш-таблица входящих ребер.

Initform

(make-hash-table)

Readers

ht-inlet-edges.

Writers

(setf ht-inlet-edges).

Slot: ht-outlet-edges

Хеш-таблица исходящих ребер.

Initform

(make-hash-table)

Readers

ht-outlet-edges.

Writers

(setf ht-outlet-edges).

Slot: counter

Количество, созданных вершин

Allocation

:class

Initform

0

Readers

<node>-counter.

Writers

(setf <node>-counter).

Class: <nodesep>

Attribute: @link[uri="https://graphviz.org/docs/attrs/nodesep/"](nodesep)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-nodesep

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:nodesep

Readers

attr-nodesep.

Writers

(setf attr-nodesep).

Class: <nojustify>

Attribute: @link[uri="https://graphviz.org/docs/attrs/nojustify/"](nojustify)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-nojustify

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:nojustify

Readers

attr-nojustify.

Writers

(setf attr-nojustify).

Class: <normalize>

Attribute: @link[uri="https://graphviz.org/docs/attrs/normalize/"](normalize)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-normalize

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:normalize

Readers

attr-normalize.

Writers

(setf attr-normalize).

Class: <notranslate>

Attribute: @link[uri="https://graphviz.org/docs/attrs/notranslate/"](notranslate)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-notranslate

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:notranslate

Readers

attr-notranslate.

Writers

(setf attr-notranslate).

Class: <nslimit1>

Attribute: @link[uri="https://graphviz.org/docs/attrs/nslimit1/"](nslimit1)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-nslimit1

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:nslimit1

Readers

attr-nslimit1.

Writers

(setf attr-nslimit1).

Class: <nslimit>

Attribute: @link[uri="https://graphviz.org/docs/attrs/nslimit/"](nslimit)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-nslimit

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:nslimit

Readers

attr-nslimit.

Writers

(setf attr-nslimit).

Class: <ordering>

Attribute: @link[uri="https://graphviz.org/docs/attrs/ordering/"](ordering)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-ordering

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:ordering

Readers

attr-ordering.

Writers

(setf attr-ordering).

Class: <orientation>

Attribute: @link[uri="https://graphviz.org/docs/attrs/orientation/"](orientation)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-orientation

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:orientation

Readers

attr-orientation.

Writers

(setf attr-orientation).

Class: <outputorder>

Attribute: @link[uri="https://graphviz.org/docs/attrs/outputorder/"](outputorder)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-outputorder

Type: @link[uri="https://graphviz.org/docs/attr-types/outputMode/"](outputMode)

Initargs

:outputorder

Readers

attr-outputorder.

Writers

(setf attr-outputorder).

Class: <overlap>

Attribute: @link[uri="https://graphviz.org/docs/attrs/overlap/"](overlap)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-overlap

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:overlap

Readers

attr-overlap.

Writers

(setf attr-overlap).

Class: <overlap_scaling>

Attribute: @link[uri="https://graphviz.org/docs/attrs/overlap_scaling/"](overlap_scaling)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-overlap_scaling

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:overlap_scaling

Readers

attr-overlap_scaling.

Writers

(setf attr-overlap_scaling).

Class: <overlap_shrink>

Attribute: @link[uri="https://graphviz.org/docs/attrs/overlap_shrink/"](overlap_shrink)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-overlap_shrink

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:overlap_shrink

Readers

attr-overlap_shrink.

Writers

(setf attr-overlap_shrink).

Class: <pack>

Attribute: @link[uri="https://graphviz.org/docs/attrs/pack/"](pack)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-pack

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/int/"](int), @link[uri="https://graphviz.org/docs/attr-types/false/"](false)

Initargs

:pack

Readers

attr-pack.

Writers

(setf attr-pack).

Class: <packmode>

Attribute: @link[uri="https://graphviz.org/docs/attrs/packmode/"](packmode)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-packmode

Type: @link[uri="https://graphviz.org/docs/attr-types/packMode/"](packMode)

Initargs

:packmode

Readers

attr-packmode.

Writers

(setf attr-packmode).

Class: <pad>

Attribute: @link[uri="https://graphviz.org/docs/attrs/pad/"](pad)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-pad

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:pad

Readers

attr-pad.

Writers

(setf attr-pad).

Class: <page>

Attribute: @link[uri="https://graphviz.org/docs/attrs/page/"](page)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-page

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:page

Readers

attr-page.

Writers

(setf attr-page).

Class: <pagedir>

Attribute: @link[uri="https://graphviz.org/docs/attrs/pagedir/"](pagedir)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-pagedir

Type: @link[uri="https://graphviz.org/docs/attr-types/pagedir/"](pagedir)

Initargs

:pagedir

Readers

attr-pagedir.

Writers

(setf attr-pagedir).

Class: <pdf-printer-viewer>

PDF - принтер-просмотрщик

Package

mnas-graph/printer-viewer.

Source

printer-viewer.lisp.

Direct superclasses

<printer-viewer>.

Direct methods

initialize-instance.

Class: <pencolor>

Attribute: @link[uri="https://graphviz.org/docs/attrs/pencolor/"](pencolor)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<cluster-attributes>.

Direct methods
Direct slots
Slot: sl-pencolor

Type: @link[uri="https://graphviz.org/docs/attr-types/color/"](color)

Initargs

:pencolor

Readers

attr-pencolor.

Writers

(setf attr-pencolor).

Class: <penwidth>

Attribute: @link[uri="https://graphviz.org/docs/attrs/penwidth/"](penwidth)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-penwidth

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:penwidth

Readers

attr-penwidth.

Writers

(setf attr-penwidth).

Class: <peripheries>

Attribute: @link[uri="https://graphviz.org/docs/attrs/peripheries/"](peripheries)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-peripheries

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:peripheries

Readers

attr-peripheries.

Writers

(setf attr-peripheries).

Class: <pin>

Attribute: @link[uri="https://graphviz.org/docs/attrs/pin/"](pin)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-pin

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:pin

Readers

attr-pin.

Writers

(setf attr-pin).

Class: <pos>

Attribute: @link[uri="https://graphviz.org/docs/attrs/pos/"](pos)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-pos

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point), @link[uri="https://graphviz.org/docs/attr-types/splineType/"](splineType)

Initargs

:pos

Readers

attr-pos.

Writers

(setf attr-pos).

Class: <printer-viewer>

Принтер-просмотрщик

Package

mnas-graph/printer-viewer.

Source

printer-viewer.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: graphviz-prg

Программа для вывода

Initform

:filter-dot

Initargs

:graphviz-prg

Readers

printer-viewer-graphviz-prg.

Writers

(setf printer-viewer-graphviz-prg).

Slot: dpi

Разрешение принтера

Initform

"300"

Initargs

:dpi

Readers

printer-viewer-dpi.

Writers

(setf printer-viewer-dpi).

Slot: executable

Путь к выполняемой программе

Initform

"c:/program files/internet explorer/iexplore.exe"

Initargs

:executable

Readers

printer-viewer-executable.

Writers

(setf printer-viewer-executable).

Slot: out-type

Формат файла для вывода

Initform

"pdf"

Initargs

:out-type

Readers

printer-viewer-out-type.

Writers

(setf printer-viewer-out-type).

Class: <quadtree>

Attribute: @link[uri="https://graphviz.org/docs/attrs/quadtree/"](quadtree)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-quadtree

Type: @link[uri="https://graphviz.org/docs/attr-types/quadType/"](quadType), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:quadtree

Readers

attr-quadtree.

Writers

(setf attr-quadtree).

Class: <quantum>

Attribute: @link[uri="https://graphviz.org/docs/attrs/quantum/"](quantum)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-quantum

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:quantum

Readers

attr-quantum.

Writers

(setf attr-quantum).

Class: <rank>

Attribute: @link[uri="https://graphviz.org/docs/attrs/rank/"](rank)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<subgraphs-attributes>.

Direct methods
Direct slots
Slot: sl-rank

Type: @link[uri="https://graphviz.org/docs/attr-types/rankType/"](rankType)

Initargs

:rank

Readers

attr-rank.

Writers

(setf attr-rank).

Class: <rankdir>

Attribute: @link[uri="https://graphviz.org/docs/attrs/rankdir/"](rankdir)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-rankdir

Type: @link[uri="https://graphviz.org/docs/attr-types/rankdir/"](rankdir)

Initargs

:rankdir

Readers

attr-rankdir.

Writers

(setf attr-rankdir).

Class: <ranksep>

Attribute: @link[uri="https://graphviz.org/docs/attrs/ranksep/"](ranksep)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-ranksep

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/doubleList/"](doubleList)

Initargs

:ranksep

Readers

attr-ranksep.

Writers

(setf attr-ranksep).

Class: <ratio>

Attribute: @link[uri="https://graphviz.org/docs/attrs/ratio/"](ratio)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-ratio

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:ratio

Readers

attr-ratio.

Writers

(setf attr-ratio).

Class: <rects>

Attribute: @link[uri="https://graphviz.org/docs/attrs/rects/"](rects)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-rects

Type: @link[uri="https://graphviz.org/docs/attr-types/rect/"](rect)

Initargs

:rects

Readers

attr-rects.

Writers

(setf attr-rects).

Class: <regular>

Attribute: @link[uri="https://graphviz.org/docs/attrs/regular/"](regular)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-regular

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:regular

Readers

attr-regular.

Writers

(setf attr-regular).

Class: <remincross>

Attribute: @link[uri="https://graphviz.org/docs/attrs/remincross/"](remincross)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-remincross

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:remincross

Readers

attr-remincross.

Writers

(setf attr-remincross).

Class: <repulsiveforce>

Attribute: @link[uri="https://graphviz.org/docs/attrs/repulsiveforce/"](repulsiveforce)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-repulsiveforce

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:repulsiveforce

Readers

attr-repulsiveforce.

Writers

(setf attr-repulsiveforce).

Class: <resolution>

Attribute: @link[uri="https://graphviz.org/docs/attrs/resolution/"](resolution)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-resolution

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:resolution

Readers

attr-resolution.

Writers

(setf attr-resolution).

Class: <root>

Attribute: @link[uri="https://graphviz.org/docs/attrs/root/"](root)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-root

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string), @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:root

Readers

attr-root.

Writers

(setf attr-root).

Class: <rotate>

Attribute: @link[uri="https://graphviz.org/docs/attrs/rotate/"](rotate)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-rotate

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:rotate

Readers

attr-rotate.

Writers

(setf attr-rotate).

Class: <rotation>

Attribute: @link[uri="https://graphviz.org/docs/attrs/rotation/"](rotation)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-rotation

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:rotation

Readers

attr-rotation.

Writers

(setf attr-rotation).

Class: <samehead>

Attribute: @link[uri="https://graphviz.org/docs/attrs/samehead/"](samehead)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-samehead

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:samehead

Readers

attr-samehead.

Writers

(setf attr-samehead).

Class: <sametail>

Attribute: @link[uri="https://graphviz.org/docs/attrs/sametail/"](sametail)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-sametail

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:sametail

Readers

attr-sametail.

Writers

(setf attr-sametail).

Class: <samplepoints>

Attribute: @link[uri="https://graphviz.org/docs/attrs/samplepoints/"](samplepoints)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-samplepoints

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:samplepoints

Readers

attr-samplepoints.

Writers

(setf attr-samplepoints).

Class: <scale>

Attribute: @link[uri="https://graphviz.org/docs/attrs/scale/"](scale)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-scale

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:scale

Readers

attr-scale.

Writers

(setf attr-scale).

Class: <searchsize>

Attribute: @link[uri="https://graphviz.org/docs/attrs/searchsize/"](searchsize)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-searchsize

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:searchsize

Readers

attr-searchsize.

Writers

(setf attr-searchsize).

Class: <sep>

Attribute: @link[uri="https://graphviz.org/docs/attrs/sep/"](sep)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-sep

Type: @link[uri="https://graphviz.org/docs/attr-types/addDouble/"](addDouble), @link[uri="https://graphviz.org/docs/attr-types/addPoint/"](addPoint)

Initargs

:sep

Readers

attr-sep.

Writers

(setf attr-sep).

Class: <shape>

Attribute: @link[uri="https://graphviz.org/docs/attrs/shape/"](shape)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-shape

Type: @link[uri="https://graphviz.org/docs/attr-types/shape/"](shape)

Initargs

:shape

Readers

attr-shape.

Writers

(setf attr-shape).

Class: <shapefile>

Attribute: @link[uri="https://graphviz.org/docs/attrs/shapefile/"](shapefile)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-shapefile

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:shapefile

Readers

attr-shapefile.

Writers

(setf attr-shapefile).

Class: <showboxes>

Attribute: @link[uri="https://graphviz.org/docs/attrs/showboxes/"](showboxes)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-showboxes

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:showboxes

Readers

attr-showboxes.

Writers

(setf attr-showboxes).

Class: <sides>

Attribute: @link[uri="https://graphviz.org/docs/attrs/sides/"](sides)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-sides

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:sides

Readers

attr-sides.

Writers

(setf attr-sides).

Class: <size>

Attribute: @link[uri="https://graphviz.org/docs/attrs/size/"](size)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-size

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double), @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:size

Readers

attr-size.

Writers

(setf attr-size).

Class: <skew>

Attribute: @link[uri="https://graphviz.org/docs/attrs/skew/"](skew)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-skew

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:skew

Readers

attr-skew.

Writers

(setf attr-skew).

Class: <smoothing>

Attribute: @link[uri="https://graphviz.org/docs/attrs/smoothing/"](smoothing)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-smoothing

Type: @link[uri="https://graphviz.org/docs/attr-types/smoothType/"](smoothType)

Initargs

:smoothing

Readers

attr-smoothing.

Writers

(setf attr-smoothing).

Class: <sortv>

Attribute: @link[uri="https://graphviz.org/docs/attrs/sortv/"](sortv)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-sortv

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int)

Initargs

:sortv

Readers

attr-sortv.

Writers

(setf attr-sortv).

Class: <splines>

Attribute: @link[uri="https://graphviz.org/docs/attrs/splines/"](splines)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-splines

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:splines

Readers

attr-splines.

Writers

(setf attr-splines).

Class: <start>

Attribute: @link[uri="https://graphviz.org/docs/attrs/start/"](start)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-start

Type: @link[uri="https://graphviz.org/docs/attr-types/startType/"](startType)

Initargs

:start

Readers

attr-start.

Writers

(setf attr-start).

Class: <style>

Attribute: @link[uri="https://graphviz.org/docs/attrs/style/"](style)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-style

Type: @link[uri="https://graphviz.org/docs/attr-types/style/"](style)

Initargs

:style

Readers

attr-style.

Writers

(setf attr-style).

Class: <stylesheet>

Attribute: @link[uri="https://graphviz.org/docs/attrs/stylesheet/"](stylesheet)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-stylesheet

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:stylesheet

Readers

attr-stylesheet.

Writers

(setf attr-stylesheet).

Class: <svg-printer-viewer>

SVG - принтер-просмотрщик

Package

mnas-graph/printer-viewer.

Source

printer-viewer.lisp.

Direct superclasses

<printer-viewer>.

Direct methods

initialize-instance.

Class: <tail_lp>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tail_lp/"](tail_lp)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tail_lp

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:tail_lp

Readers

attr-tail_lp.

Writers

(setf attr-tail_lp).

Class: <tailclip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tailclip/"](tailclip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tailclip

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:tailclip

Readers

attr-tailclip.

Writers

(setf attr-tailclip).

Class: <tailhref>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tailhref/"](tailhref)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tailhref

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:tailhref

Readers

attr-tailhref.

Writers

(setf attr-tailhref).

Class: <taillabel>

Attribute: @link[uri="https://graphviz.org/docs/attrs/taillabel/"](taillabel)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-taillabel

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Initargs

:taillabel

Readers

attr-taillabel.

Writers

(setf attr-taillabel).

Class: <tailport>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tailport/"](tailport)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tailport

Type: @link[uri="https://graphviz.org/docs/attr-types/portPos/"](portPos)

Initargs

:tailport

Readers

attr-tailport.

Writers

(setf attr-tailport).

Class: <tailtarget>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tailtarget/"](tailtarget)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tailtarget

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:tailtarget

Readers

attr-tailtarget.

Writers

(setf attr-tailtarget).

Class: <tailtooltip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tailtooltip/"](tailtooltip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tailtooltip

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:tailtooltip

Readers

attr-tailtooltip.

Writers

(setf attr-tailtooltip).

Class: <target>

Attribute: @link[uri="https://graphviz.org/docs/attrs/target/"](target)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-target

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString), @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:target

Readers

attr-target.

Writers

(setf attr-target).

Class: <tooltip>

Attribute: @link[uri="https://graphviz.org/docs/attrs/tooltip/"](tooltip)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-tooltip

Type: @link[uri="https://graphviz.org/docs/attr-types/escString/"](escString)

Initargs

:tooltip

Readers

attr-tooltip.

Writers

(setf attr-tooltip).

Class: <truecolor>

Attribute: @link[uri="https://graphviz.org/docs/attrs/truecolor/"](truecolor)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-truecolor

Type: @link[uri="https://graphviz.org/docs/attr-types/bool/"](bool)

Initargs

:truecolor

Readers

attr-truecolor.

Writers

(setf attr-truecolor).

Class: <vertices>

Attribute: @link[uri="https://graphviz.org/docs/attrs/vertices/"](vertices)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-vertices

Type: @link[uri="https://graphviz.org/docs/attr-types/pointList/"](pointList)

Initargs

:vertices

Readers

attr-vertices.

Writers

(setf attr-vertices).

Class: <viewport>

Attribute: @link[uri="https://graphviz.org/docs/attrs/viewport/"](viewport)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-viewport

Type: @link[uri="https://graphviz.org/docs/attr-types/viewPort/"](viewPort)

Initargs

:viewport

Readers

attr-viewport.

Writers

(setf attr-viewport).

Class: <voro_margin>

Attribute: @link[uri="https://graphviz.org/docs/attrs/voro_margin/"](voro_margin)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-voro_margin

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:voro_margin

Readers

attr-voro_margin.

Writers

(setf attr-voro_margin).

Class: <weight>

Attribute: @link[uri="https://graphviz.org/docs/attrs/weight/"](weight)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-weight

Type: @link[uri="https://graphviz.org/docs/attr-types/int/"](int), @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:weight

Readers

attr-weight.

Writers

(setf attr-weight).

Class: <width>

Attribute: @link[uri="https://graphviz.org/docs/attrs/width/"](width)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-width

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:width

Readers

attr-width.

Writers

(setf attr-width).

Class: <xdotversion>

Attribute: @link[uri="https://graphviz.org/docs/attrs/xdotversion/"](xdotversion)

Package

mnas-graph.

Source

attributes.lisp.

Direct methods
Direct slots
Slot: sl-xdotversion

Type: @link[uri="https://graphviz.org/docs/attr-types/string/"](string)

Initargs

:xdotversion

Readers

attr-xdotversion.

Writers

(setf attr-xdotversion).

Class: <xlabel>

Attribute: @link[uri="https://graphviz.org/docs/attrs/xlabel/"](xlabel)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-xlabel

Type: @link[uri="https://graphviz.org/docs/attr-types/lblString/"](lblString)

Initargs

:xlabel

Readers

attr-xlabel.

Writers

(setf attr-xlabel).

Class: <xlp>

Attribute: @link[uri="https://graphviz.org/docs/attrs/xlp/"](xlp)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: sl-xlp

Type: @link[uri="https://graphviz.org/docs/attr-types/point/"](point)

Initargs

:xlp

Readers

attr-xlp.

Writers

(setf attr-xlp).

Class: <z>

Attribute: @link[uri="https://graphviz.org/docs/attrs/z/"](z)

Package

mnas-graph.

Source

attributes.lisp.

Direct subclasses

<node-attributes>.

Direct methods
Direct slots
Slot: sl-z

Type: @link[uri="https://graphviz.org/docs/attr-types/double/"](double)

Initargs

:z

Readers

attr-z.

Writers

(setf attr-z).


6.2 Internals


6.2.1 Special variables

Special Variable: *attributes*

@b(Описание:) параметр @b(*attributes*) содержит таблицу
атрибутов (см. attributes-data.org и @link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)).

Package

mnas-graph.

Source

attributes.lisp.

Special Variable: *graphviz.org*
Package

mnas-graph.

Source

mnas-graph.lisp.


6.2.2 Macros

Macro: class-slot (slot doc-slot doc-class)
Package

mnas-graph.

Source

attributes.lisp.

Macro: def-my-class (slot doc-slot doc-class)
Package

mnas-graph.

Source

attributes.lisp.

Macro: pr-obj-after (slot)
Package

mnas-graph.

Source

attributes.lisp.


6.2.3 Ordinary functions

Function: fill-nodes (g &key outlet-color inlet-color izolated-color)
Package

mnas-graph/demos.

Source

demos.lisp.

Function: graphviz-prg (key)

@b(Описание:) функция @b(graphviz-prg) возвращает путь к программе dot или ее вариациям.

Package

mnas-graph/view.

Source

view.lisp.

Function: make-filter-prg-path (program)
Package

mnas-graph/filter.

Source

filter.lisp.

Function: mk-attributes (attr)

@b(Пример использования:) @begin[lang=lisp](code) (mk-attributes *attributes*) @end(code)

Package

mnas-graph.

Source

attributes.lisp.

Function: mk-collected (attr cl-name find-char class-doc)

@b(Пример использования:)
@begin[lang=lisp](code)
(mk-collected *attributes* "<node-attributes>" #N "@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)") (mk-collected *attributes* "<edge-attributes>" #E "@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)") (mk-collected *attributes* "<graph-attributes>" #G "@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)") (mk-collected *attributes* "<subgraphs-attributes>" #S "@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)") (mk-collected *attributes* "<cluster-attributes>" #C "@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)") @end(code)

Package

mnas-graph.

Source

attributes.lisp.

Function: view (graph)
Package

mnas-graph/alg.

Source

alg.lisp.

Function: x-postamble (&key out)

@b(Описание:) функция @b(x-postamble) записывает постамбулу при выводе графа в поток @b(out) в формате gv-файла.

Package

mnas-graph/view.

Source

view.lisp.

Function: x-preamble (&key out name rankdir shape)

@b(Описание:) функция @b(x-preamble) выводит преамбулу при выводе графа в поток @b(out) в формате gv-файла.

Package

mnas-graph/view.

Source

view.lisp.


6.2.4 Generic functions

Generic Reader: ht-edge-names (object)
Generic Writer: (setf ht-edge-names) (object)
Package

mnas-graph.

Methods
Reader Method: ht-edge-names ((<graph> <graph>))
Writer Method: (setf ht-edge-names) ((<graph> <graph>))

Хешированная таблица имен ребер графа. Ключ - строка; значение - ребро.

Source

graph.lisp.

Target Slot

ht-edge-names.

Generic Reader: ht-inlet-edges (object)
Generic Writer: (setf ht-inlet-edges) (object)
Package

mnas-graph.

Methods
Reader Method: ht-inlet-edges ((<node> <node>))
Writer Method: (setf ht-inlet-edges) ((<node> <node>))

Хеш-таблица входящих ребер.

Source

node.lisp.

Target Slot

ht-inlet-edges.

Generic Reader: ht-node-names (object)
Generic Writer: (setf ht-node-names) (object)
Package

mnas-graph.

Methods
Reader Method: ht-node-names ((<graph> <graph>))
Writer Method: (setf ht-node-names) ((<graph> <graph>))

Хешированная таблица имен вершин графа.

Source

graph.lisp.

Target Slot

ht-node-names.

Generic Reader: ht-outlet-edges (object)
Generic Writer: (setf ht-outlet-edges) (object)
Package

mnas-graph.

Methods
Reader Method: ht-outlet-edges ((<node> <node>))
Writer Method: (setf ht-outlet-edges) ((<node> <node>))

Хеш-таблица исходящих ребер.

Source

node.lisp.

Target Slot

ht-outlet-edges.

Generic Function: init-distance-graph (beg-node graph &key direction)

@b(Описание:) обобщенная функция @b(init-distance-graph) возвращает граф @b(graph), модифицируя значения, связанные с вершинами данными для вычисления кратчайшего пути от определенной вершины до любой из вершин графа.

Package

mnas-graph/alg.

Source

alg.lisp.

Methods
Method: init-distance-graph ((beg-node <node>) (graph <graph>) &key direction)

@b(Описание:) метод @b(init-distance-graph) применим только для ребер с одинаковыми положительными весами.

@b(Локльные функции:)
@begin(enum)

@item( @b(Описание:) локальная функция @b(init) инициализирует значения для каждой из вершин графа списком (WEIGHT NODE), где:

@begin(list)
@item(WEIGHT - сумма весов предыдущих вершин;)
@item(NODE - предыдущая вершина.)
@end(list)

Значения (WEIGHT NODE) первоначально устанавливаются: @begin(list)
@item(для начальной вершины @(beg-node) WEIGHT=0; NODE=nil;) @item(для остальных вершин WEIGHT=nil; NODE=nil.)
@end(list))

@item(
@b(Описание:) локальная функция @b(for-edge) выполняет модификацию данных значений вершины графа @b(graph), связанной с ребром @b(edge) функцией @b(end-func). Данные вершин модфицируются так, что

@begin(list)
@item(WEIGHT - становится равным текущей минимальной длине пути от начальной вершины;)
@item(NODE - предыдущая вершина, для которой найден текущей кратчайший путь;)
@end(list)

@b(Переменые:)
@begin(list)
@item(edge - ребро графа;)
@item(beg-func - функция, задающая начальную вершину ребра, для которой определен текущий кратчайший путь;)
@item(end-func - функция, задающая конечную вершину ребра, для которой определяется текущий кратчайший путь.)
@end(list)
)

@item(
@b(Описание:) функция @b(for-nodes) для хеш-таблицы @b(ht-nodes) вершин графа @b(graph) возвращает список, состоящий из двух хеш-таблиц, содержащих:
@begin(list)
@item(первая - исхоящие ребра;)
@item(вторая - входящие ребра.)
@end(list)
)

@item(
@b(Описание:) функция @b(for-edges) возвращает хеш-таблицу вершин, расположенных далее по направлению поиска:
@begin(list)
@item(головах ребер @b(edges), если )
@item(хвостах ребер @b(edges), если )
@item(головах и хвостах ребер @b(edges) )
@end(list)

@b(Переменые:)
@begin(list)
@item(lst-ht-edges - список, состоящий из двух хеш-таблиц, которые содержат ребра. В первой хеш-таблице содержатся исходящие ребра. Во второй хеш-таблице содержатся входящие ребра.)

@end(list)

В качестве побочного эффекта модифицирует значения хеш-таблицы вершин графа @b(graph) так, что для значение для определенной вершины является списком двух элементов. Первый элемент этого списка является числом, представляющим минимальную длину пути, найденную к этой вершине от начальной вершины. Второй элемент является предыдущей вершиной, для которой найден путь с минимальной длиной.

)
@end(enum)

Generic Reader: printer-viewer-dpi (object)
Generic Writer: (setf printer-viewer-dpi) (object)
Package

mnas-graph/printer-viewer.

Methods
Reader Method: printer-viewer-dpi ((<printer-viewer> <printer-viewer>))
Writer Method: (setf printer-viewer-dpi) ((<printer-viewer> <printer-viewer>))

Разрешение принтера

Source

printer-viewer.lisp.

Target Slot

dpi.

Generic Reader: printer-viewer-executable (object)
Generic Writer: (setf printer-viewer-executable) (object)
Package

mnas-graph/printer-viewer.

Methods
Reader Method: printer-viewer-executable ((<printer-viewer> <printer-viewer>))
Writer Method: (setf printer-viewer-executable) ((<printer-viewer> <printer-viewer>))

Путь к выполняемой программе

Source

printer-viewer.lisp.

Target Slot

executable.

Generic Reader: printer-viewer-graphviz-prg (object)
Generic Writer: (setf printer-viewer-graphviz-prg) (object)
Package

mnas-graph/printer-viewer.

Methods
Reader Method: printer-viewer-graphviz-prg ((<printer-viewer> <printer-viewer>))
Writer Method: (setf printer-viewer-graphviz-prg) ((<printer-viewer> <printer-viewer>))

Программа для вывода

Source

printer-viewer.lisp.

Target Slot

graphviz-prg.

Generic Reader: printer-viewer-out-type (object)
Generic Writer: (setf printer-viewer-out-type) (object)
Package

mnas-graph/printer-viewer.

Methods
Reader Method: printer-viewer-out-type ((<printer-viewer> <printer-viewer>))
Writer Method: (setf printer-viewer-out-type) ((<printer-viewer> <printer-viewer>))

Формат файла для вывода

Source

printer-viewer.lisp.

Target Slot

out-type.

Generic Reader: rankdir (object)
Generic Writer: (setf rankdir) (object)
Package

mnas-graph.

Methods
Reader Method: rankdir ((<graph> <graph>))
Writer Method: (setf rankdir) ((<graph> <graph>))

Определяет направление отрисовки: TB, LR, BT, RL.

Source

graph.lisp.

Target Slot

rankdir.


6.2.5 Classes

Class: <cluster-attributes>

@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)

Package

mnas-graph.

Source

attributes.lisp.

Direct superclasses
Class: <edge-attributes>

@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)

Package

mnas-graph.

Source

attributes.lisp.

Direct superclasses
Direct subclasses

<edge>.

Class: <graph-attributes>

@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)

Package

mnas-graph.

Source

attributes.lisp.

Direct superclasses
Class: <node-attributes>

@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)

Package

mnas-graph.

Source

attributes.lisp.

Direct superclasses
Direct subclasses

<node>.

Class: <subgraphs-attributes>

@link[uri="https://graphviz.org/doc/info/attrs.html"](Attributes)

Package

mnas-graph.

Source

attributes.lisp.

Direct superclasses

<rank>.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   (   <  
A   B   C   D   E   F   G   H   I   M   N   O   P   R   T   V   W   X  
Index Entry  Section

(
(setf <node>-counter): Public generic functions
(setf <node>-counter): Public generic functions
(setf attr-area): Public generic functions
(setf attr-area): Public generic functions
(setf attr-arrowhead): Public generic functions
(setf attr-arrowhead): Public generic functions
(setf attr-arrowsize): Public generic functions
(setf attr-arrowsize): Public generic functions
(setf attr-arrowtail): Public generic functions
(setf attr-arrowtail): Public generic functions
(setf attr-bb): Public generic functions
(setf attr-bb): Public generic functions
(setf attr-bgcolor): Public generic functions
(setf attr-bgcolor): Public generic functions
(setf attr-center): Public generic functions
(setf attr-center): Public generic functions
(setf attr-charset): Public generic functions
(setf attr-charset): Public generic functions
(setf attr-class): Public generic functions
(setf attr-class): Public generic functions
(setf attr-clusterrank): Public generic functions
(setf attr-clusterrank): Public generic functions
(setf attr-color): Public generic functions
(setf attr-color): Public generic functions
(setf attr-colorscheme): Public generic functions
(setf attr-colorscheme): Public generic functions
(setf attr-comment): Public generic functions
(setf attr-comment): Public generic functions
(setf attr-compound): Public generic functions
(setf attr-compound): Public generic functions
(setf attr-concentrate): Public generic functions
(setf attr-concentrate): Public generic functions
(setf attr-constraint): Public generic functions
(setf attr-constraint): Public generic functions
(setf attr-decorate): Public generic functions
(setf attr-decorate): Public generic functions
(setf attr-defaultdist): Public generic functions
(setf attr-defaultdist): Public generic functions
(setf attr-dim): Public generic functions
(setf attr-dim): Public generic functions
(setf attr-dimen): Public generic functions
(setf attr-dimen): Public generic functions
(setf attr-dir): Public generic functions
(setf attr-dir): Public generic functions
(setf attr-diredgeconstraints): Public generic functions
(setf attr-diredgeconstraints): Public generic functions
(setf attr-distortion): Public generic functions
(setf attr-distortion): Public generic functions
(setf attr-dpi): Public generic functions
(setf attr-dpi): Public generic functions
(setf attr-edgehref): Public generic functions
(setf attr-edgehref): Public generic functions
(setf attr-edgetarget): Public generic functions
(setf attr-edgetarget): Public generic functions
(setf attr-edgetooltip): Public generic functions
(setf attr-edgetooltip): Public generic functions
(setf attr-epsilon): Public generic functions
(setf attr-epsilon): Public generic functions
(setf attr-esep): Public generic functions
(setf attr-esep): Public generic functions
(setf attr-fillcolor): Public generic functions
(setf attr-fillcolor): Public generic functions
(setf attr-fixedsize): Public generic functions
(setf attr-fixedsize): Public generic functions
(setf attr-fontcolor): Public generic functions
(setf attr-fontcolor): Public generic functions
(setf attr-fontname): Public generic functions
(setf attr-fontname): Public generic functions
(setf attr-fontnames): Public generic functions
(setf attr-fontnames): Public generic functions
(setf attr-fontpath): Public generic functions
(setf attr-fontpath): Public generic functions
(setf attr-fontsize): Public generic functions
(setf attr-fontsize): Public generic functions
(setf attr-forcelabels): Public generic functions
(setf attr-forcelabels): Public generic functions
(setf attr-gradientangle): Public generic functions
(setf attr-gradientangle): Public generic functions
(setf attr-group): Public generic functions
(setf attr-group): Public generic functions
(setf attr-headclip): Public generic functions
(setf attr-headclip): Public generic functions
(setf attr-headhref): Public generic functions
(setf attr-headhref): Public generic functions
(setf attr-headlabel): Public generic functions
(setf attr-headlabel): Public generic functions
(setf attr-headport): Public generic functions
(setf attr-headport): Public generic functions
(setf attr-headtarget): Public generic functions
(setf attr-headtarget): Public generic functions
(setf attr-headtooltip): Public generic functions
(setf attr-headtooltip): Public generic functions
(setf attr-head_lp): Public generic functions
(setf attr-head_lp): Public generic functions
(setf attr-height): Public generic functions
(setf attr-height): Public generic functions
(setf attr-href): Public generic functions
(setf attr-href): Public generic functions
(setf attr-id): Public generic functions
(setf attr-id): Public generic functions
(setf attr-image): Public generic functions
(setf attr-image): Public generic functions
(setf attr-imagepath): Public generic functions
(setf attr-imagepath): Public generic functions
(setf attr-imagepos): Public generic functions
(setf attr-imagepos): Public generic functions
(setf attr-imagescale): Public generic functions
(setf attr-imagescale): Public generic functions
(setf attr-inputscale): Public generic functions
(setf attr-inputscale): Public generic functions
(setf attr-label): Public generic functions
(setf attr-label): Public generic functions
(setf attr-labelangle): Public generic functions
(setf attr-labelangle): Public generic functions
(setf attr-labeldistance): Public generic functions
(setf attr-labeldistance): Public generic functions
(setf attr-labelfloat): Public generic functions
(setf attr-labelfloat): Public generic functions
(setf attr-labelfontcolor): Public generic functions
(setf attr-labelfontcolor): Public generic functions
(setf attr-labelfontname): Public generic functions
(setf attr-labelfontname): Public generic functions
(setf attr-labelfontsize): Public generic functions
(setf attr-labelfontsize): Public generic functions
(setf attr-labelhref): Public generic functions
(setf attr-labelhref): Public generic functions
(setf attr-labeljust): Public generic functions
(setf attr-labeljust): Public generic functions
(setf attr-labelloc): Public generic functions
(setf attr-labelloc): Public generic functions
(setf attr-labeltarget): Public generic functions
(setf attr-labeltarget): Public generic functions
(setf attr-labeltooltip): Public generic functions
(setf attr-labeltooltip): Public generic functions
(setf attr-label_scheme): Public generic functions
(setf attr-label_scheme): Public generic functions
(setf attr-landscape): Public generic functions
(setf attr-landscape): Public generic functions
(setf attr-layer): Public generic functions
(setf attr-layer): Public generic functions
(setf attr-layerlistsep): Public generic functions
(setf attr-layerlistsep): Public generic functions
(setf attr-layers): Public generic functions
(setf attr-layers): Public generic functions
(setf attr-layerselect): Public generic functions
(setf attr-layerselect): Public generic functions
(setf attr-layersep): Public generic functions
(setf attr-layersep): Public generic functions
(setf attr-layout): Public generic functions
(setf attr-layout): Public generic functions
(setf attr-len): Public generic functions
(setf attr-len): Public generic functions
(setf attr-levels): Public generic functions
(setf attr-levels): Public generic functions
(setf attr-levelsgap): Public generic functions
(setf attr-levelsgap): Public generic functions
(setf attr-lhead): Public generic functions
(setf attr-lhead): Public generic functions
(setf attr-lheight): Public generic functions
(setf attr-lheight): Public generic functions
(setf attr-lp): Public generic functions
(setf attr-lp): Public generic functions
(setf attr-ltail): Public generic functions
(setf attr-ltail): Public generic functions
(setf attr-lwidth): Public generic functions
(setf attr-lwidth): Public generic functions
(setf attr-margin): Public generic functions
(setf attr-margin): Public generic functions
(setf attr-maxiter): Public generic functions
(setf attr-maxiter): Public generic functions
(setf attr-mclimit): Public generic functions
(setf attr-mclimit): Public generic functions
(setf attr-mindist): Public generic functions
(setf attr-mindist): Public generic functions
(setf attr-minlen): Public generic functions
(setf attr-minlen): Public generic functions
(setf attr-mode): Public generic functions
(setf attr-mode): Public generic functions
(setf attr-model): Public generic functions
(setf attr-model): Public generic functions
(setf attr-mosek): Public generic functions
(setf attr-mosek): Public generic functions
(setf attr-newrank): Public generic functions
(setf attr-newrank): Public generic functions
(setf attr-nodesep): Public generic functions
(setf attr-nodesep): Public generic functions
(setf attr-nojustify): Public generic functions
(setf attr-nojustify): Public generic functions
(setf attr-normalize): Public generic functions
(setf attr-normalize): Public generic functions
(setf attr-notranslate): Public generic functions
(setf attr-notranslate): Public generic functions
(setf attr-nslimit): Public generic functions
(setf attr-nslimit): Public generic functions
(setf attr-nslimit1): Public generic functions
(setf attr-nslimit1): Public generic functions
(setf attr-ordering): Public generic functions
(setf attr-ordering): Public generic functions
(setf attr-orientation): Public generic functions
(setf attr-orientation): Public generic functions
(setf attr-outputorder): Public generic functions
(setf attr-outputorder): Public generic functions
(setf attr-overlap): Public generic functions
(setf attr-overlap): Public generic functions
(setf attr-overlap_scaling): Public generic functions
(setf attr-overlap_scaling): Public generic functions
(setf attr-overlap_shrink): Public generic functions
(setf attr-overlap_shrink): Public generic functions
(setf attr-pack): Public generic functions
(setf attr-pack): Public generic functions
(setf attr-packmode): Public generic functions
(setf attr-packmode): Public generic functions
(setf attr-pad): Public generic functions
(setf attr-pad): Public generic functions
(setf attr-page): Public generic functions
(setf attr-page): Public generic functions
(setf attr-pagedir): Public generic functions
(setf attr-pagedir): Public generic functions
(setf attr-pencolor): Public generic functions
(setf attr-pencolor): Public generic functions
(setf attr-penwidth): Public generic functions
(setf attr-penwidth): Public generic functions
(setf attr-peripheries): Public generic functions
(setf attr-peripheries): Public generic functions
(setf attr-pin): Public generic functions
(setf attr-pin): Public generic functions
(setf attr-pos): Public generic functions
(setf attr-pos): Public generic functions
(setf attr-quadtree): Public generic functions
(setf attr-quadtree): Public generic functions
(setf attr-quantum): Public generic functions
(setf attr-quantum): Public generic functions
(setf attr-rank): Public generic functions
(setf attr-rank): Public generic functions
(setf attr-rankdir): Public generic functions
(setf attr-rankdir): Public generic functions
(setf attr-ranksep): Public generic functions
(setf attr-ranksep): Public generic functions
(setf attr-ratio): Public generic functions
(setf attr-ratio): Public generic functions
(setf attr-rects): Public generic functions
(setf attr-rects): Public generic functions
(setf attr-regular): Public generic functions
(setf attr-regular): Public generic functions
(setf attr-remincross): Public generic functions
(setf attr-remincross): Public generic functions
(setf attr-repulsiveforce): Public generic functions
(setf attr-repulsiveforce): Public generic functions
(setf attr-resolution): Public generic functions
(setf attr-resolution): Public generic functions
(setf attr-root): Public generic functions
(setf attr-root): Public generic functions
(setf attr-rotate): Public generic functions
(setf attr-rotate): Public generic functions
(setf attr-rotation): Public generic functions
(setf attr-rotation): Public generic functions
(setf attr-samehead): Public generic functions
(setf attr-samehead): Public generic functions
(setf attr-sametail): Public generic functions
(setf attr-sametail): Public generic functions
(setf attr-samplepoints): Public generic functions
(setf attr-samplepoints): Public generic functions
(setf attr-scale): Public generic functions
(setf attr-scale): Public generic functions
(setf attr-searchsize): Public generic functions
(setf attr-searchsize): Public generic functions
(setf attr-sep): Public generic functions
(setf attr-sep): Public generic functions
(setf attr-shape): Public generic functions
(setf attr-shape): Public generic functions
(setf attr-shapefile): Public generic functions
(setf attr-shapefile): Public generic functions
(setf attr-showboxes): Public generic functions
(setf attr-showboxes): Public generic functions
(setf attr-sides): Public generic functions
(setf attr-sides): Public generic functions
(setf attr-size): Public generic functions
(setf attr-size): Public generic functions
(setf attr-skew): Public generic functions
(setf attr-skew): Public generic functions
(setf attr-smoothing): Public generic functions
(setf attr-smoothing): Public generic functions
(setf attr-sortv): Public generic functions
(setf attr-sortv): Public generic functions
(setf attr-splines): Public generic functions
(setf attr-splines): Public generic functions
(setf attr-start): Public generic functions
(setf attr-start): Public generic functions
(setf attr-style): Public generic functions
(setf attr-style): Public generic functions
(setf attr-stylesheet): Public generic functions
(setf attr-stylesheet): Public generic functions
(setf attr-tailclip): Public generic functions
(setf attr-tailclip): Public generic functions
(setf attr-tailhref): Public generic functions
(setf attr-tailhref): Public generic functions
(setf attr-taillabel): Public generic functions
(setf attr-taillabel): Public generic functions
(setf attr-tailport): Public generic functions
(setf attr-tailport): Public generic functions
(setf attr-tailtarget): Public generic functions
(setf attr-tailtarget): Public generic functions
(setf attr-tailtooltip): Public generic functions
(setf attr-tailtooltip): Public generic functions
(setf attr-tail_lp): Public generic functions
(setf attr-tail_lp): Public generic functions
(setf attr-target): Public generic functions
(setf attr-target): Public generic functions
(setf attr-tooltip): Public generic functions
(setf attr-tooltip): Public generic functions
(setf attr-truecolor): Public generic functions
(setf attr-truecolor): Public generic functions
(setf attr-vertices): Public generic functions
(setf attr-vertices): Public generic functions
(setf attr-viewport): Public generic functions
(setf attr-viewport): Public generic functions
(setf attr-voro_margin): Public generic functions
(setf attr-voro_margin): Public generic functions
(setf attr-weight): Public generic functions
(setf attr-weight): Public generic functions
(setf attr-width): Public generic functions
(setf attr-width): Public generic functions
(setf attr-xdotversion): Public generic functions
(setf attr-xdotversion): Public generic functions
(setf attr-xlabel): Public generic functions
(setf attr-xlabel): Public generic functions
(setf attr-xlp): Public generic functions
(setf attr-xlp): Public generic functions
(setf attr-z): Public generic functions
(setf attr-z): Public generic functions
(setf edges): Public generic functions
(setf edges): Public generic functions
(setf head): Public generic functions
(setf head): Public generic functions
(setf ht-edge-names): Private generic functions
(setf ht-edge-names): Private generic functions
(setf ht-inlet-edges): Private generic functions
(setf ht-inlet-edges): Private generic functions
(setf ht-node-names): Private generic functions
(setf ht-node-names): Private generic functions
(setf ht-outlet-edges): Private generic functions
(setf ht-outlet-edges): Private generic functions
(setf name): Public generic functions
(setf name): Public generic functions
(setf nodes): Public generic functions
(setf nodes): Public generic functions
(setf owner): Public generic functions
(setf owner): Public generic functions
(setf printer-viewer-dpi): Private generic functions
(setf printer-viewer-dpi): Private generic functions
(setf printer-viewer-executable): Private generic functions
(setf printer-viewer-executable): Private generic functions
(setf printer-viewer-graphviz-prg): Private generic functions
(setf printer-viewer-graphviz-prg): Private generic functions
(setf printer-viewer-out-type): Private generic functions
(setf printer-viewer-out-type): Private generic functions
(setf rankdir): Private generic functions
(setf rankdir): Private generic functions
(setf tail): Public generic functions
(setf tail): Public generic functions
(setf weight): Public generic functions
(setf weight): Public generic functions

<
<node>-counter: Public generic functions
<node>-counter: Public generic functions

A
attr-area: Public generic functions
attr-area: Public generic functions
attr-arrowhead: Public generic functions
attr-arrowhead: Public generic functions
attr-arrowsize: Public generic functions
attr-arrowsize: Public generic functions
attr-arrowtail: Public generic functions
attr-arrowtail: Public generic functions
attr-bb: Public generic functions
attr-bb: Public generic functions
attr-bgcolor: Public generic functions
attr-bgcolor: Public generic functions
attr-center: Public generic functions
attr-center: Public generic functions
attr-charset: Public generic functions
attr-charset: Public generic functions
attr-class: Public generic functions
attr-class: Public generic functions
attr-clusterrank: Public generic functions
attr-clusterrank: Public generic functions
attr-color: Public generic functions
attr-color: Public generic functions
attr-colorscheme: Public generic functions
attr-colorscheme: Public generic functions
attr-comment: Public generic functions
attr-comment: Public generic functions
attr-compound: Public generic functions
attr-compound: Public generic functions
attr-concentrate: Public generic functions
attr-concentrate: Public generic functions
attr-constraint: Public generic functions
attr-constraint: Public generic functions
attr-decorate: Public generic functions
attr-decorate: Public generic functions
attr-defaultdist: Public generic functions
attr-defaultdist: Public generic functions
attr-dim: Public generic functions
attr-dim: Public generic functions
attr-dimen: Public generic functions
attr-dimen: Public generic functions
attr-dir: Public generic functions
attr-dir: Public generic functions
attr-diredgeconstraints: Public generic functions
attr-diredgeconstraints: Public generic functions
attr-distortion: Public generic functions
attr-distortion: Public generic functions
attr-dpi: Public generic functions
attr-dpi: Public generic functions
attr-edgehref: Public generic functions
attr-edgehref: Public generic functions
attr-edgetarget: Public generic functions
attr-edgetarget: Public generic functions
attr-edgetooltip: Public generic functions
attr-edgetooltip: Public generic functions
attr-epsilon: Public generic functions
attr-epsilon: Public generic functions
attr-esep: Public generic functions
attr-esep: Public generic functions
attr-fillcolor: Public generic functions
attr-fillcolor: Public generic functions
attr-fixedsize: Public generic functions
attr-fixedsize: Public generic functions
attr-fontcolor: Public generic functions
attr-fontcolor: Public generic functions
attr-fontname: Public generic functions
attr-fontname: Public generic functions
attr-fontnames: Public generic functions
attr-fontnames: Public generic functions
attr-fontpath: Public generic functions
attr-fontpath: Public generic functions
attr-fontsize: Public generic functions
attr-fontsize: Public generic functions
attr-forcelabels: Public generic functions
attr-forcelabels: Public generic functions
attr-gradientangle: Public generic functions
attr-gradientangle: Public generic functions
attr-group: Public generic functions
attr-group: Public generic functions
attr-headclip: Public generic functions
attr-headclip: Public generic functions
attr-headhref: Public generic functions
attr-headhref: Public generic functions
attr-headlabel: Public generic functions
attr-headlabel: Public generic functions
attr-headport: Public generic functions
attr-headport: Public generic functions
attr-headtarget: Public generic functions
attr-headtarget: Public generic functions
attr-headtooltip: Public generic functions
attr-headtooltip: Public generic functions
attr-head_lp: Public generic functions
attr-head_lp: Public generic functions
attr-height: Public generic functions
attr-height: Public generic functions
attr-href: Public generic functions
attr-href: Public generic functions
attr-id: Public generic functions
attr-id: Public generic functions
attr-image: Public generic functions
attr-image: Public generic functions
attr-imagepath: Public generic functions
attr-imagepath: Public generic functions
attr-imagepos: Public generic functions
attr-imagepos: Public generic functions
attr-imagescale: Public generic functions
attr-imagescale: Public generic functions
attr-inputscale: Public generic functions
attr-inputscale: Public generic functions
attr-label: Public generic functions
attr-label: Public generic functions
attr-labelangle: Public generic functions
attr-labelangle: Public generic functions
attr-labeldistance: Public generic functions
attr-labeldistance: Public generic functions
attr-labelfloat: Public generic functions
attr-labelfloat: Public generic functions
attr-labelfontcolor: Public generic functions
attr-labelfontcolor: Public generic functions
attr-labelfontname: Public generic functions
attr-labelfontname: Public generic functions
attr-labelfontsize: Public generic functions
attr-labelfontsize: Public generic functions
attr-labelhref: Public generic functions
attr-labelhref: Public generic functions
attr-labeljust: Public generic functions
attr-labeljust: Public generic functions
attr-labelloc: Public generic functions
attr-labelloc: Public generic functions
attr-labeltarget: Public generic functions
attr-labeltarget: Public generic functions
attr-labeltooltip: Public generic functions
attr-labeltooltip: Public generic functions
attr-label_scheme: Public generic functions
attr-label_scheme: Public generic functions
attr-landscape: Public generic functions
attr-landscape: Public generic functions
attr-layer: Public generic functions
attr-layer: Public generic functions
attr-layerlistsep: Public generic functions
attr-layerlistsep: Public generic functions
attr-layers: Public generic functions
attr-layers: Public generic functions
attr-layerselect: Public generic functions
attr-layerselect: Public generic functions
attr-layersep: Public generic functions
attr-layersep: Public generic functions
attr-layout: Public generic functions
attr-layout: Public generic functions
attr-len: Public generic functions
attr-len: Public generic functions
attr-levels: Public generic functions
attr-levels: Public generic functions
attr-levelsgap: Public generic functions
attr-levelsgap: Public generic functions
attr-lhead: Public generic functions
attr-lhead: Public generic functions
attr-lheight: Public generic functions
attr-lheight: Public generic functions
attr-lp: Public generic functions
attr-lp: Public generic functions
attr-ltail: Public generic functions
attr-ltail: Public generic functions
attr-lwidth: Public generic functions
attr-lwidth: Public generic functions
attr-margin: Public generic functions
attr-margin: Public generic functions
attr-maxiter: Public generic functions
attr-maxiter: Public generic functions
attr-mclimit: Public generic functions
attr-mclimit: Public generic functions
attr-mindist: Public generic functions
attr-mindist: Public generic functions
attr-minlen: Public generic functions
attr-minlen: Public generic functions
attr-mode: Public generic functions
attr-mode: Public generic functions
attr-model: Public generic functions
attr-model: Public generic functions
attr-mosek: Public generic functions
attr-mosek: Public generic functions
attr-newrank: Public generic functions
attr-newrank: Public generic functions
attr-nodesep: Public generic functions
attr-nodesep: Public generic functions
attr-nojustify: Public generic functions
attr-nojustify: Public generic functions
attr-normalize: Public generic functions
attr-normalize: Public generic functions
attr-notranslate: Public generic functions
attr-notranslate: Public generic functions
attr-nslimit: Public generic functions
attr-nslimit: Public generic functions
attr-nslimit1: Public generic functions
attr-nslimit1: Public generic functions
attr-ordering: Public generic functions
attr-ordering: Public generic functions
attr-orientation: Public generic functions
attr-orientation: Public generic functions
attr-outputorder: Public generic functions
attr-outputorder: Public generic functions
attr-overlap: Public generic functions
attr-overlap: Public generic functions
attr-overlap_scaling: Public generic functions
attr-overlap_scaling: Public generic functions
attr-overlap_shrink: Public generic functions
attr-overlap_shrink: Public generic functions
attr-pack: Public generic functions
attr-pack: Public generic functions
attr-packmode: Public generic functions
attr-packmode: Public generic functions
attr-pad: Public generic functions
attr-pad: Public generic functions
attr-page: Public generic functions
attr-page: Public generic functions
attr-pagedir: Public generic functions
attr-pagedir: Public generic functions
attr-pencolor: Public generic functions
attr-pencolor: Public generic functions
attr-penwidth: Public generic functions
attr-penwidth: Public generic functions
attr-peripheries: Public generic functions
attr-peripheries: Public generic functions
attr-pin: Public generic functions
attr-pin: Public generic functions
attr-pos: Public generic functions
attr-pos: Public generic functions
attr-quadtree: Public generic functions
attr-quadtree: Public generic functions
attr-quantum: Public generic functions
attr-quantum: Public generic functions
attr-rank: Public generic functions
attr-rank: Public generic functions
attr-rankdir: Public generic functions
attr-rankdir: Public generic functions
attr-ranksep: Public generic functions
attr-ranksep: Public generic functions
attr-ratio: Public generic functions
attr-ratio: Public generic functions
attr-rects: Public generic functions
attr-rects: Public generic functions
attr-regular: Public generic functions
attr-regular: Public generic functions
attr-remincross: Public generic functions
attr-remincross: Public generic functions
attr-repulsiveforce: Public generic functions
attr-repulsiveforce: Public generic functions
attr-resolution: Public generic functions
attr-resolution: Public generic functions
attr-root: Public generic functions
attr-root: Public generic functions
attr-rotate: Public generic functions
attr-rotate: Public generic functions
attr-rotation: Public generic functions
attr-rotation: Public generic functions
attr-samehead: Public generic functions
attr-samehead: Public generic functions
attr-sametail: Public generic functions
attr-sametail: Public generic functions
attr-samplepoints: Public generic functions
attr-samplepoints: Public generic functions
attr-scale: Public generic functions
attr-scale: Public generic functions
attr-searchsize: Public generic functions
attr-searchsize: Public generic functions
attr-sep: Public generic functions
attr-sep: Public generic functions
attr-shape: Public generic functions
attr-shape: Public generic functions
attr-shapefile: Public generic functions
attr-shapefile: Public generic functions
attr-showboxes: Public generic functions
attr-showboxes: Public generic functions
attr-sides: Public generic functions
attr-sides: Public generic functions
attr-size: Public generic functions
attr-size: Public generic functions
attr-skew: Public generic functions
attr-skew: Public generic functions
attr-smoothing: Public generic functions
attr-smoothing: Public generic functions
attr-sortv: Public generic functions
attr-sortv: Public generic functions
attr-splines: Public generic functions
attr-splines: Public generic functions
attr-start: Public generic functions
attr-start: Public generic functions
attr-style: Public generic functions
attr-style: Public generic functions
attr-stylesheet: Public generic functions
attr-stylesheet: Public generic functions
attr-tailclip: Public generic functions
attr-tailclip: Public generic functions
attr-tailhref: Public generic functions
attr-tailhref: Public generic functions
attr-taillabel: Public generic functions
attr-taillabel: Public generic functions
attr-tailport: Public generic functions
attr-tailport: Public generic functions
attr-tailtarget: Public generic functions
attr-tailtarget: Public generic functions
attr-tailtooltip: Public generic functions
attr-tailtooltip: Public generic functions
attr-tail_lp: Public generic functions
attr-tail_lp: Public generic functions
attr-target: Public generic functions
attr-target: Public generic functions
attr-tooltip: Public generic functions
attr-tooltip: Public generic functions
attr-truecolor: Public generic functions
attr-truecolor: Public generic functions
attr-vertices: Public generic functions
attr-vertices: Public generic functions
attr-viewport: Public generic functions
attr-viewport: Public generic functions
attr-voro_margin: Public generic functions
attr-voro_margin: Public generic functions
attr-weight: Public generic functions
attr-weight: Public generic functions
attr-width: Public generic functions
attr-width: Public generic functions
attr-xdotversion: Public generic functions
attr-xdotversion: Public generic functions
attr-xlabel: Public generic functions
attr-xlabel: Public generic functions
attr-xlp: Public generic functions
attr-xlp: Public generic functions
attr-z: Public generic functions
attr-z: Public generic functions

B
both-edges: Public generic functions
both-edges: Public generic functions
both-edges: Public generic functions

C
class-slot: Private macros
clear: Public generic functions
clear: Public generic functions
connected-nodes: Public generic functions
connected-nodes: Public generic functions
copy: Public generic functions
copy: Public generic functions
count-edges: Public generic functions
count-edges: Public generic functions
count-nodes: Public generic functions
count-nodes: Public generic functions

D
def-my-class: Private macros
demo-1: Public ordinary functions
demo-2: Public ordinary functions
demo-3: Public ordinary functions
demo-4: Public ordinary functions
demo-5: Public ordinary functions
demo-6: Public ordinary functions

E
edge-names: Public generic functions
edge-names: Public generic functions
edges: Public generic functions
edges: Public generic functions
empty: Public generic functions
empty: Public generic functions

F
fill-nodes: Private ordinary functions
find-backward-nodes: Public generic functions
find-backward-nodes: Public generic functions
find-backward-nodes: Public generic functions
find-backward-nodes: Public generic functions
find-both-nodes: Public generic functions
find-both-nodes: Public generic functions
find-both-nodes: Public generic functions
find-edge: Public generic functions
find-edge: Public generic functions
find-forward-nodes: Public generic functions
find-forward-nodes: Public generic functions
find-forward-nodes: Public generic functions
find-forward-nodes: Public generic functions
find-node: Public generic functions
find-node: Public generic functions
Function, demo-1: Public ordinary functions
Function, demo-2: Public ordinary functions
Function, demo-3: Public ordinary functions
Function, demo-4: Public ordinary functions
Function, demo-5: Public ordinary functions
Function, demo-6: Public ordinary functions
Function, fill-nodes: Private ordinary functions
Function, graphviz-prg: Private ordinary functions
Function, make-filter-prg-path: Private ordinary functions
Function, make-graph: Public ordinary functions
Function, make-random-graph: Public ordinary functions
Function, mk-attributes: Private ordinary functions
Function, mk-collected: Private ordinary functions
Function, view: Private ordinary functions
Function, x-postamble: Private ordinary functions
Function, x-preamble: Private ordinary functions

G
Generic Function, (setf <node>-counter): Public generic functions
Generic Function, (setf attr-area): Public generic functions
Generic Function, (setf attr-arrowhead): Public generic functions
Generic Function, (setf attr-arrowsize): Public generic functions
Generic Function, (setf attr-arrowtail): Public generic functions
Generic Function, (setf attr-bb): Public generic functions
Generic Function, (setf attr-bgcolor): Public generic functions
Generic Function, (setf attr-center): Public generic functions
Generic Function, (setf attr-charset): Public generic functions
Generic Function, (setf attr-class): Public generic functions
Generic Function, (setf attr-clusterrank): Public generic functions
Generic Function, (setf attr-color): Public generic functions
Generic Function, (setf attr-colorscheme): Public generic functions
Generic Function, (setf attr-comment): Public generic functions
Generic Function, (setf attr-compound): Public generic functions
Generic Function, (setf attr-concentrate): Public generic functions
Generic Function, (setf attr-constraint): Public generic functions
Generic Function, (setf attr-decorate): Public generic functions
Generic Function, (setf attr-defaultdist): Public generic functions
Generic Function, (setf attr-dim): Public generic functions
Generic Function, (setf attr-dimen): Public generic functions
Generic Function, (setf attr-dir): Public generic functions
Generic Function, (setf attr-diredgeconstraints): Public generic functions
Generic Function, (setf attr-distortion): Public generic functions
Generic Function, (setf attr-dpi): Public generic functions
Generic Function, (setf attr-edgehref): Public generic functions
Generic Function, (setf attr-edgetarget): Public generic functions
Generic Function, (setf attr-edgetooltip): Public generic functions
Generic Function, (setf attr-epsilon): Public generic functions
Generic Function, (setf attr-esep): Public generic functions
Generic Function, (setf attr-fillcolor): Public generic functions
Generic Function, (setf attr-fixedsize): Public generic functions
Generic Function, (setf attr-fontcolor): Public generic functions
Generic Function, (setf attr-fontname): Public generic functions
Generic Function, (setf attr-fontnames): Public generic functions
Generic Function, (setf attr-fontpath): Public generic functions
Generic Function, (setf attr-fontsize): Public generic functions
Generic Function, (setf attr-forcelabels): Public generic functions
Generic Function, (setf attr-gradientangle): Public generic functions
Generic Function, (setf attr-group): Public generic functions
Generic Function, (setf attr-headclip): Public generic functions
Generic Function, (setf attr-headhref): Public generic functions
Generic Function, (setf attr-headlabel): Public generic functions
Generic Function, (setf attr-headport): Public generic functions
Generic Function, (setf attr-headtarget): Public generic functions
Generic Function, (setf attr-headtooltip): Public generic functions
Generic Function, (setf attr-head_lp): Public generic functions
Generic Function, (setf attr-height): Public generic functions
Generic Function, (setf attr-href): Public generic functions
Generic Function, (setf attr-id): Public generic functions
Generic Function, (setf attr-image): Public generic functions
Generic Function, (setf attr-imagepath): Public generic functions
Generic Function, (setf attr-imagepos): Public generic functions
Generic Function, (setf attr-imagescale): Public generic functions
Generic Function, (setf attr-inputscale): Public generic functions
Generic Function, (setf attr-label): Public generic functions
Generic Function, (setf attr-labelangle): Public generic functions
Generic Function, (setf attr-labeldistance): Public generic functions
Generic Function, (setf attr-labelfloat): Public generic functions
Generic Function, (setf attr-labelfontcolor): Public generic functions
Generic Function, (setf attr-labelfontname): Public generic functions
Generic Function, (setf attr-labelfontsize): Public generic functions
Generic Function, (setf attr-labelhref): Public generic functions
Generic Function, (setf attr-labeljust): Public generic functions
Generic Function, (setf attr-labelloc): Public generic functions
Generic Function, (setf attr-labeltarget): Public generic functions
Generic Function, (setf attr-labeltooltip): Public generic functions
Generic Function, (setf attr-label_scheme): Public generic functions
Generic Function, (setf attr-landscape): Public generic functions
Generic Function, (setf attr-layer): Public generic functions
Generic Function, (setf attr-layerlistsep): Public generic functions
Generic Function, (setf attr-layers): Public generic functions
Generic Function, (setf attr-layerselect): Public generic functions
Generic Function, (setf attr-layersep): Public generic functions
Generic Function, (setf attr-layout): Public generic functions
Generic Function, (setf attr-len): Public generic functions
Generic Function, (setf attr-levels): Public generic functions
Generic Function, (setf attr-levelsgap): Public generic functions
Generic Function, (setf attr-lhead): Public generic functions
Generic Function, (setf attr-lheight): Public generic functions
Generic Function, (setf attr-lp): Public generic functions
Generic Function, (setf attr-ltail): Public generic functions
Generic Function, (setf attr-lwidth): Public generic functions
Generic Function, (setf attr-margin): Public generic functions
Generic Function, (setf attr-maxiter): Public generic functions
Generic Function, (setf attr-mclimit): Public generic functions
Generic Function, (setf attr-mindist): Public generic functions
Generic Function, (setf attr-minlen): Public generic functions
Generic Function, (setf attr-mode): Public generic functions
Generic Function, (setf attr-model): Public generic functions
Generic Function, (setf attr-mosek): Public generic functions
Generic Function, (setf attr-newrank): Public generic functions
Generic Function, (setf attr-nodesep): Public generic functions
Generic Function, (setf attr-nojustify): Public generic functions
Generic Function, (setf attr-normalize): Public generic functions
Generic Function, (setf attr-notranslate): Public generic functions
Generic Function, (setf attr-nslimit): Public generic functions
Generic Function, (setf attr-nslimit1): Public generic functions
Generic Function, (setf attr-ordering): Public generic functions
Generic Function, (setf attr-orientation): Public generic functions
Generic Function, (setf attr-outputorder): Public generic functions
Generic Function, (setf attr-overlap): Public generic functions
Generic Function, (setf attr-overlap_scaling): Public generic functions
Generic Function, (setf attr-overlap_shrink): Public generic functions
Generic Function, (setf attr-pack): Public generic functions
Generic Function, (setf attr-packmode): Public generic functions
Generic Function, (setf attr-pad): Public generic functions
Generic Function, (setf attr-page): Public generic functions
Generic Function, (setf attr-pagedir): Public generic functions
Generic Function, (setf attr-pencolor): Public generic functions
Generic Function, (setf attr-penwidth): Public generic functions
Generic Function, (setf attr-peripheries): Public generic functions
Generic Function, (setf attr-pin): Public generic functions
Generic Function, (setf attr-pos): Public generic functions
Generic Function, (setf attr-quadtree): Public generic functions
Generic Function, (setf attr-quantum): Public generic functions
Generic Function, (setf attr-rank): Public generic functions
Generic Function, (setf attr-rankdir): Public generic functions
Generic Function, (setf attr-ranksep): Public generic functions
Generic Function, (setf attr-ratio): Public generic functions
Generic Function, (setf attr-rects): Public generic functions
Generic Function, (setf attr-regular): Public generic functions
Generic Function, (setf attr-remincross): Public generic functions
Generic Function, (setf attr-repulsiveforce): Public generic functions
Generic Function, (setf attr-resolution): Public generic functions
Generic Function, (setf attr-root): Public generic functions
Generic Function, (setf attr-rotate): Public generic functions
Generic Function, (setf attr-rotation): Public generic functions
Generic Function, (setf attr-samehead): Public generic functions
Generic Function, (setf attr-sametail): Public generic functions
Generic Function, (setf attr-samplepoints): Public generic functions
Generic Function, (setf attr-scale): Public generic functions
Generic Function, (setf attr-searchsize): Public generic functions
Generic Function, (setf attr-sep): Public generic functions
Generic Function, (setf attr-shape): Public generic functions
Generic Function, (setf attr-shapefile): Public generic functions
Generic Function, (setf attr-showboxes): Public generic functions
Generic Function, (setf attr-sides): Public generic functions
Generic Function, (setf attr-size): Public generic functions
Generic Function, (setf attr-skew): Public generic functions
Generic Function, (setf attr-smoothing): Public generic functions
Generic Function, (setf attr-sortv): Public generic functions
Generic Function, (setf attr-splines): Public generic functions
Generic Function, (setf attr-start): Public generic functions
Generic Function, (setf attr-style): Public generic functions
Generic Function, (setf attr-stylesheet): Public generic functions
Generic Function, (setf attr-tailclip): Public generic functions
Generic Function, (setf attr-tailhref): Public generic functions
Generic Function, (setf attr-taillabel): Public generic functions
Generic Function, (setf attr-tailport): Public generic functions
Generic Function, (setf attr-tailtarget): Public generic functions
Generic Function, (setf attr-tailtooltip): Public generic functions
Generic Function, (setf attr-tail_lp): Public generic functions
Generic Function, (setf attr-target): Public generic functions
Generic Function, (setf attr-tooltip): Public generic functions
Generic Function, (setf attr-truecolor): Public generic functions
Generic Function, (setf attr-vertices): Public generic functions
Generic Function, (setf attr-viewport): Public generic functions
Generic Function, (setf attr-voro_margin): Public generic functions
Generic Function, (setf attr-weight): Public generic functions
Generic Function, (setf attr-width): Public generic functions
Generic Function, (setf attr-xdotversion): Public generic functions
Generic Function, (setf attr-xlabel): Public generic functions
Generic Function, (setf attr-xlp): Public generic functions
Generic Function, (setf attr-z): Public generic functions
Generic Function, (setf edges): Public generic functions
Generic Function, (setf head): Public generic functions
Generic Function, (setf ht-edge-names): Private generic functions
Generic Function, (setf ht-inlet-edges): Private generic functions
Generic Function, (setf ht-node-names): Private generic functions
Generic Function, (setf ht-outlet-edges): Private generic functions
Generic Function, (setf name): Public generic functions
Generic Function, (setf nodes): Public generic functions
Generic Function, (setf owner): Public generic functions
Generic Function, (setf printer-viewer-dpi): Private generic functions
Generic Function, (setf printer-viewer-executable): Private generic functions
Generic Function, (setf printer-viewer-graphviz-prg): Private generic functions
Generic Function, (setf printer-viewer-out-type): Private generic functions
Generic Function, (setf rankdir): Private generic functions
Generic Function, (setf tail): Public generic functions
Generic Function, (setf weight): Public generic functions
Generic Function, <node>-counter: Public generic functions
Generic Function, attr-area: Public generic functions
Generic Function, attr-arrowhead: Public generic functions
Generic Function, attr-arrowsize: Public generic functions
Generic Function, attr-arrowtail: Public generic functions
Generic Function, attr-bb: Public generic functions
Generic Function, attr-bgcolor: Public generic functions
Generic Function, attr-center: Public generic functions
Generic Function, attr-charset: Public generic functions
Generic Function, attr-class: Public generic functions
Generic Function, attr-clusterrank: Public generic functions
Generic Function, attr-color: Public generic functions
Generic Function, attr-colorscheme: Public generic functions
Generic Function, attr-comment: Public generic functions
Generic Function, attr-compound: Public generic functions
Generic Function, attr-concentrate: Public generic functions
Generic Function, attr-constraint: Public generic functions
Generic Function, attr-decorate: Public generic functions
Generic Function, attr-defaultdist: Public generic functions
Generic Function, attr-dim: Public generic functions
Generic Function, attr-dimen: Public generic functions
Generic Function, attr-dir: Public generic functions
Generic Function, attr-diredgeconstraints: Public generic functions
Generic Function, attr-distortion: Public generic functions
Generic Function, attr-dpi: Public generic functions
Generic Function, attr-edgehref: Public generic functions
Generic Function, attr-edgetarget: Public generic functions
Generic Function, attr-edgetooltip: Public generic functions
Generic Function, attr-epsilon: Public generic functions
Generic Function, attr-esep: Public generic functions
Generic Function, attr-fillcolor: Public generic functions
Generic Function, attr-fixedsize: Public generic functions
Generic Function, attr-fontcolor: Public generic functions
Generic Function, attr-fontname: Public generic functions
Generic Function, attr-fontnames: Public generic functions
Generic Function, attr-fontpath: Public generic functions
Generic Function, attr-fontsize: Public generic functions
Generic Function, attr-forcelabels: Public generic functions
Generic Function, attr-gradientangle: Public generic functions
Generic Function, attr-group: Public generic functions
Generic Function, attr-headclip: Public generic functions
Generic Function, attr-headhref: Public generic functions
Generic Function, attr-headlabel: Public generic functions
Generic Function, attr-headport: Public generic functions
Generic Function, attr-headtarget: Public generic functions
Generic Function, attr-headtooltip: Public generic functions
Generic Function, attr-head_lp: Public generic functions
Generic Function, attr-height: Public generic functions
Generic Function, attr-href: Public generic functions
Generic Function, attr-id: Public generic functions
Generic Function, attr-image: Public generic functions
Generic Function, attr-imagepath: Public generic functions
Generic Function, attr-imagepos: Public generic functions
Generic Function, attr-imagescale: Public generic functions
Generic Function, attr-inputscale: Public generic functions
Generic Function, attr-label: Public generic functions
Generic Function, attr-labelangle: Public generic functions
Generic Function, attr-labeldistance: Public generic functions
Generic Function, attr-labelfloat: Public generic functions
Generic Function, attr-labelfontcolor: Public generic functions
Generic Function, attr-labelfontname: Public generic functions
Generic Function, attr-labelfontsize: Public generic functions
Generic Function, attr-labelhref: Public generic functions
Generic Function, attr-labeljust: Public generic functions
Generic Function, attr-labelloc: Public generic functions
Generic Function, attr-labeltarget: Public generic functions
Generic Function, attr-labeltooltip: Public generic functions
Generic Function, attr-label_scheme: Public generic functions
Generic Function, attr-landscape: Public generic functions
Generic Function, attr-layer: Public generic functions
Generic Function, attr-layerlistsep: Public generic functions
Generic Function, attr-layers: Public generic functions
Generic Function, attr-layerselect: Public generic functions
Generic Function, attr-layersep: Public generic functions
Generic Function, attr-layout: Public generic functions
Generic Function, attr-len: Public generic functions
Generic Function, attr-levels: Public generic functions
Generic Function, attr-levelsgap: Public generic functions
Generic Function, attr-lhead: Public generic functions
Generic Function, attr-lheight: Public generic functions
Generic Function, attr-lp: Public generic functions
Generic Function, attr-ltail: Public generic functions
Generic Function, attr-lwidth: Public generic functions
Generic Function, attr-margin: Public generic functions
Generic Function, attr-maxiter: Public generic functions
Generic Function, attr-mclimit: Public generic functions
Generic Function, attr-mindist: Public generic functions
Generic Function, attr-minlen: Public generic functions
Generic Function, attr-mode: Public generic functions
Generic Function, attr-model: Public generic functions
Generic Function, attr-mosek: Public generic functions
Generic Function, attr-newrank: Public generic functions
Generic Function, attr-nodesep: Public generic functions
Generic Function, attr-nojustify: Public generic functions
Generic Function, attr-normalize: Public generic functions
Generic Function, attr-notranslate: Public generic functions
Generic Function, attr-nslimit: Public generic functions
Generic Function, attr-nslimit1: Public generic functions
Generic Function, attr-ordering: Public generic functions
Generic Function, attr-orientation: Public generic functions
Generic Function, attr-outputorder: Public generic functions
Generic Function, attr-overlap: Public generic functions
Generic Function, attr-overlap_scaling: Public generic functions
Generic Function, attr-overlap_shrink: Public generic functions
Generic Function, attr-pack: Public generic functions
Generic Function, attr-packmode: Public generic functions
Generic Function, attr-pad: Public generic functions
Generic Function, attr-page: Public generic functions
Generic Function, attr-pagedir: Public generic functions
Generic Function, attr-pencolor: Public generic functions
Generic Function, attr-penwidth: Public generic functions
Generic Function, attr-peripheries: Public generic functions
Generic Function, attr-pin: Public generic functions
Generic Function, attr-pos: Public generic functions
Generic Function, attr-quadtree: Public generic functions
Generic Function, attr-quantum: Public generic functions
Generic Function, attr-rank: Public generic functions
Generic Function, attr-rankdir: Public generic functions
Generic Function, attr-ranksep: Public generic functions
Generic Function, attr-ratio: Public generic functions
Generic Function, attr-rects: Public generic functions
Generic Function, attr-regular: Public generic functions
Generic Function, attr-remincross: Public generic functions
Generic Function, attr-repulsiveforce: Public generic functions
Generic Function, attr-resolution: Public generic functions
Generic Function, attr-root: Public generic functions
Generic Function, attr-rotate: Public generic functions
Generic Function, attr-rotation: Public generic functions
Generic Function, attr-samehead: Public generic functions
Generic Function, attr-sametail: Public generic functions
Generic Function, attr-samplepoints: Public generic functions
Generic Function, attr-scale: Public generic functions
Generic Function, attr-searchsize: Public generic functions
Generic Function, attr-sep: Public generic functions
Generic Function, attr-shape: Public generic functions
Generic Function, attr-shapefile: Public generic functions
Generic Function, attr-showboxes: Public generic functions
Generic Function, attr-sides: Public generic functions
Generic Function, attr-size: Public generic functions
Generic Function, attr-skew: Public generic functions
Generic Function, attr-smoothing: Public generic functions
Generic Function, attr-sortv: Public generic functions
Generic Function, attr-splines: Public generic functions
Generic Function, attr-start: Public generic functions
Generic Function, attr-style: Public generic functions
Generic Function, attr-stylesheet: Public generic functions
Generic Function, attr-tailclip: Public generic functions
Generic Function, attr-tailhref: Public generic functions
Generic Function, attr-taillabel: Public generic functions
Generic Function, attr-tailport: Public generic functions
Generic Function, attr-tailtarget: Public generic functions
Generic Function, attr-tailtooltip: Public generic functions
Generic Function, attr-tail_lp: Public generic functions
Generic Function, attr-target: Public generic functions
Generic Function, attr-tooltip: Public generic functions
Generic Function, attr-truecolor: Public generic functions
Generic Function, attr-vertices: Public generic functions
Generic Function, attr-viewport: Public generic functions
Generic Function, attr-voro_margin: Public generic functions
Generic Function, attr-weight: Public generic functions
Generic Function, attr-width: Public generic functions
Generic Function, attr-xdotversion: Public generic functions
Generic Function, attr-xlabel: Public generic functions
Generic Function, attr-xlp: Public generic functions
Generic Function, attr-z: Public generic functions
Generic Function, both-edges: Public generic functions
Generic Function, clear: Public generic functions
Generic Function, connected-nodes: Public generic functions
Generic Function, copy: Public generic functions
Generic Function, count-edges: Public generic functions
Generic Function, count-nodes: Public generic functions
Generic Function, edge-names: Public generic functions
Generic Function, edges: Public generic functions
Generic Function, empty: Public generic functions
Generic Function, find-backward-nodes: Public generic functions
Generic Function, find-both-nodes: Public generic functions
Generic Function, find-edge: Public generic functions
Generic Function, find-forward-nodes: Public generic functions
Generic Function, find-node: Public generic functions
Generic Function, head: Public generic functions
Generic Function, hierarchy-node-names: Public generic functions
Generic Function, ht-edge-names: Private generic functions
Generic Function, ht-inlet-edges: Private generic functions
Generic Function, ht-node-names: Private generic functions
Generic Function, ht-outlet-edges: Private generic functions
Generic Function, ids: Public generic functions
Generic Function, init-distance-graph: Private generic functions
Generic Function, inlet-edges: Public generic functions
Generic Function, inlet-nodes: Public generic functions
Generic Function, inlet-p: Public generic functions
Generic Function, insert-to: Public generic functions
Generic Function, into-container-p: Public generic functions
Generic Function, isolated-nodes: Public generic functions
Generic Function, isolated-p: Public generic functions
Generic Function, name: Public generic functions
Generic Function, node-names: Public generic functions
Generic Function, nodes: Public generic functions
Generic Function, outlet-edges: Public generic functions
Generic Function, outlet-nodes: Public generic functions
Generic Function, outlet-p: Public generic functions
Generic Function, owner: Public generic functions
Generic Function, path: Public generic functions
Generic Function, printer-viewer-dpi: Private generic functions
Generic Function, printer-viewer-executable: Private generic functions
Generic Function, printer-viewer-graphviz-prg: Private generic functions
Generic Function, printer-viewer-out-type: Private generic functions
Generic Function, rankdir: Private generic functions
Generic Function, remove-from: Public generic functions
Generic Function, tail: Public generic functions
Generic Function, to-graphviz: Public generic functions
Generic Function, to-list: Public generic functions
Generic Function, to-string: Public generic functions
Generic Function, view-graph: Public generic functions
Generic Function, view-graph-new: Public generic functions
Generic Function, weight: Public generic functions
graphviz-prg: Private ordinary functions

H
head: Public generic functions
head: Public generic functions
hierarchy-node-names: Public generic functions
hierarchy-node-names: Public generic functions
ht-edge-names: Private generic functions
ht-edge-names: Private generic functions
ht-inlet-edges: Private generic functions
ht-inlet-edges: Private generic functions
ht-node-names: Private generic functions
ht-node-names: Private generic functions
ht-outlet-edges: Private generic functions
ht-outlet-edges: Private generic functions

I
ids: Public generic functions
ids: Public generic functions
ids: Public generic functions
init-distance-graph: Private generic functions
init-distance-graph: Private generic functions
initialize-instance: Public standalone methods
initialize-instance: Public standalone methods
initialize-instance: Public standalone methods
initialize-instance: Public standalone methods
inlet-edges: Public generic functions
inlet-edges: Public generic functions
inlet-edges: Public generic functions
inlet-nodes: Public generic functions
inlet-nodes: Public generic functions
inlet-p: Public generic functions
inlet-p: Public generic functions
inlet-p: Public generic functions
insert-to: Public generic functions
insert-to: Public generic functions
insert-to: Public generic functions
insert-to: Public generic functions
into-container-p: Public generic functions
into-container-p: Public generic functions
into-container-p: Public generic functions
isolated-nodes: Public generic functions
isolated-nodes: Public generic functions
isolated-p: Public generic functions
isolated-p: Public generic functions
isolated-p: Public generic functions

M
Macro, class-slot: Private macros
Macro, def-my-class: Private macros
Macro, pr-obj-after: Private macros
make-filter-prg-path: Private ordinary functions
make-graph: Public ordinary functions
make-random-graph: Public ordinary functions
Method, (setf <node>-counter): Public generic functions
Method, (setf attr-area): Public generic functions
Method, (setf attr-arrowhead): Public generic functions
Method, (setf attr-arrowsize): Public generic functions
Method, (setf attr-arrowtail): Public generic functions
Method, (setf attr-bb): Public generic functions
Method, (setf attr-bgcolor): Public generic functions
Method, (setf attr-center): Public generic functions
Method, (setf attr-charset): Public generic functions
Method, (setf attr-class): Public generic functions
Method, (setf attr-clusterrank): Public generic functions
Method, (setf attr-color): Public generic functions
Method, (setf attr-colorscheme): Public generic functions
Method, (setf attr-comment): Public generic functions
Method, (setf attr-compound): Public generic functions
Method, (setf attr-concentrate): Public generic functions
Method, (setf attr-constraint): Public generic functions
Method, (setf attr-decorate): Public generic functions
Method, (setf attr-defaultdist): Public generic functions
Method, (setf attr-dim): Public generic functions
Method, (setf attr-dimen): Public generic functions
Method, (setf attr-dir): Public generic functions
Method, (setf attr-diredgeconstraints): Public generic functions
Method, (setf attr-distortion): Public generic functions
Method, (setf attr-dpi): Public generic functions
Method, (setf attr-edgehref): Public generic functions
Method, (setf attr-edgetarget): Public generic functions
Method, (setf attr-edgetooltip): Public generic functions
Method, (setf attr-epsilon): Public generic functions
Method, (setf attr-esep): Public generic functions
Method, (setf attr-fillcolor): Public generic functions
Method, (setf attr-fixedsize): Public generic functions
Method, (setf attr-fontcolor): Public generic functions
Method, (setf attr-fontname): Public generic functions
Method, (setf attr-fontnames): Public generic functions
Method, (setf attr-fontpath): Public generic functions
Method, (setf attr-fontsize): Public generic functions
Method, (setf attr-forcelabels): Public generic functions
Method, (setf attr-gradientangle): Public generic functions
Method, (setf attr-group): Public generic functions
Method, (setf attr-headclip): Public generic functions
Method, (setf attr-headhref): Public generic functions
Method, (setf attr-headlabel): Public generic functions
Method, (setf attr-headport): Public generic functions
Method, (setf attr-headtarget): Public generic functions
Method, (setf attr-headtooltip): Public generic functions
Method, (setf attr-head_lp): Public generic functions
Method, (setf attr-height): Public generic functions
Method, (setf attr-href): Public generic functions
Method, (setf attr-id): Public generic functions
Method, (setf attr-image): Public generic functions
Method, (setf attr-imagepath): Public generic functions
Method, (setf attr-imagepos): Public generic functions
Method, (setf attr-imagescale): Public generic functions
Method, (setf attr-inputscale): Public generic functions
Method, (setf attr-label): Public generic functions
Method, (setf attr-labelangle): Public generic functions
Method, (setf attr-labeldistance): Public generic functions
Method, (setf attr-labelfloat): Public generic functions
Method, (setf attr-labelfontcolor): Public generic functions
Method, (setf attr-labelfontname): Public generic functions
Method, (setf attr-labelfontsize): Public generic functions
Method, (setf attr-labelhref): Public generic functions
Method, (setf attr-labeljust): Public generic functions
Method, (setf attr-labelloc): Public generic functions
Method, (setf attr-labeltarget): Public generic functions
Method, (setf attr-labeltooltip): Public generic functions
Method, (setf attr-label_scheme): Public generic functions
Method, (setf attr-landscape): Public generic functions
Method, (setf attr-layer): Public generic functions
Method, (setf attr-layerlistsep): Public generic functions
Method, (setf attr-layers): Public generic functions
Method, (setf attr-layerselect): Public generic functions
Method, (setf attr-layersep): Public generic functions
Method, (setf attr-layout): Public generic functions
Method, (setf attr-len): Public generic functions
Method, (setf attr-levels): Public generic functions
Method, (setf attr-levelsgap): Public generic functions
Method, (setf attr-lhead): Public generic functions
Method, (setf attr-lheight): Public generic functions
Method, (setf attr-lp): Public generic functions
Method, (setf attr-ltail): Public generic functions
Method, (setf attr-lwidth): Public generic functions
Method, (setf attr-margin): Public generic functions
Method, (setf attr-maxiter): Public generic functions
Method, (setf attr-mclimit): Public generic functions
Method, (setf attr-mindist): Public generic functions
Method, (setf attr-minlen): Public generic functions
Method, (setf attr-mode): Public generic functions
Method, (setf attr-model): Public generic functions
Method, (setf attr-mosek): Public generic functions
Method, (setf attr-newrank): Public generic functions
Method, (setf attr-nodesep): Public generic functions
Method, (setf attr-nojustify): Public generic functions
Method, (setf attr-normalize): Public generic functions
Method, (setf attr-notranslate): Public generic functions
Method, (setf attr-nslimit): Public generic functions
Method, (setf attr-nslimit1): Public generic functions
Method, (setf attr-ordering): Public generic functions
Method, (setf attr-orientation): Public generic functions
Method, (setf attr-outputorder): Public generic functions
Method, (setf attr-overlap): Public generic functions
Method, (setf attr-overlap_scaling): Public generic functions
Method, (setf attr-overlap_shrink): Public generic functions
Method, (setf attr-pack): Public generic functions
Method, (setf attr-packmode): Public generic functions
Method, (setf attr-pad): Public generic functions
Method, (setf attr-page): Public generic functions
Method, (setf attr-pagedir): Public generic functions
Method, (setf attr-pencolor): Public generic functions
Method, (setf attr-penwidth): Public generic functions
Method, (setf attr-peripheries): Public generic functions
Method, (setf attr-pin): Public generic functions
Method, (setf attr-pos): Public generic functions
Method, (setf attr-quadtree): Public generic functions
Method, (setf attr-quantum): Public generic functions
Method, (setf attr-rank): Public generic functions
Method, (setf attr-rankdir): Public generic functions
Method, (setf attr-ranksep): Public generic functions
Method, (setf attr-ratio): Public generic functions
Method, (setf attr-rects): Public generic functions
Method, (setf attr-regular): Public generic functions
Method, (setf attr-remincross): Public generic functions
Method, (setf attr-repulsiveforce): Public generic functions
Method, (setf attr-resolution): Public generic functions
Method, (setf attr-root): Public generic functions
Method, (setf attr-rotate): Public generic functions
Method, (setf attr-rotation): Public generic functions
Method, (setf attr-samehead): Public generic functions
Method, (setf attr-sametail): Public generic functions
Method, (setf attr-samplepoints): Public generic functions
Method, (setf attr-scale): Public generic functions
Method, (setf attr-searchsize): Public generic functions
Method, (setf attr-sep): Public generic functions
Method, (setf attr-shape): Public generic functions
Method, (setf attr-shapefile): Public generic functions
Method, (setf attr-showboxes): Public generic functions
Method, (setf attr-sides): Public generic functions
Method, (setf attr-size): Public generic functions
Method, (setf attr-skew): Public generic functions
Method, (setf attr-smoothing): Public generic functions
Method, (setf attr-sortv): Public generic functions
Method, (setf attr-splines): Public generic functions
Method, (setf attr-start): Public generic functions
Method, (setf attr-style): Public generic functions
Method, (setf attr-stylesheet): Public generic functions
Method, (setf attr-tailclip): Public generic functions
Method, (setf attr-tailhref): Public generic functions
Method, (setf attr-taillabel): Public generic functions
Method, (setf attr-tailport): Public generic functions
Method, (setf attr-tailtarget): Public generic functions
Method, (setf attr-tailtooltip): Public generic functions
Method, (setf attr-tail_lp): Public generic functions
Method, (setf attr-target): Public generic functions
Method, (setf attr-tooltip): Public generic functions
Method, (setf attr-truecolor): Public generic functions
Method, (setf attr-vertices): Public generic functions
Method, (setf attr-viewport): Public generic functions
Method, (setf attr-voro_margin): Public generic functions
Method, (setf attr-weight): Public generic functions
Method, (setf attr-width): Public generic functions
Method, (setf attr-xdotversion): Public generic functions
Method, (setf attr-xlabel): Public generic functions
Method, (setf attr-xlp): Public generic functions
Method, (setf attr-z): Public generic functions
Method, (setf edges): Public generic functions
Method, (setf head): Public generic functions
Method, (setf ht-edge-names): Private generic functions
Method, (setf ht-inlet-edges): Private generic functions
Method, (setf ht-node-names): Private generic functions
Method, (setf ht-outlet-edges): Private generic functions
Method, (setf name): Public generic functions
Method, (setf nodes): Public generic functions
Method, (setf owner): Public generic functions
Method, (setf printer-viewer-dpi): Private generic functions
Method, (setf printer-viewer-executable): Private generic functions
Method, (setf printer-viewer-graphviz-prg): Private generic functions
Method, (setf printer-viewer-out-type): Private generic functions
Method, (setf rankdir): Private generic functions
Method, (setf tail): Public generic functions
Method, (setf weight): Public generic functions
Method, <node>-counter: Public generic functions
Method, attr-area: Public generic functions
Method, attr-arrowhead: Public generic functions
Method, attr-arrowsize: Public generic functions
Method, attr-arrowtail: Public generic functions
Method, attr-bb: Public generic functions
Method, attr-bgcolor: Public generic functions
Method, attr-center: Public generic functions
Method, attr-charset: Public generic functions
Method, attr-class: Public generic functions
Method, attr-clusterrank: Public generic functions
Method, attr-color: Public generic functions
Method, attr-colorscheme: Public generic functions
Method, attr-comment: Public generic functions
Method, attr-compound: Public generic functions
Method, attr-concentrate: Public generic functions
Method, attr-constraint: Public generic functions
Method, attr-decorate: Public generic functions
Method, attr-defaultdist: Public generic functions
Method, attr-dim: Public generic functions
Method, attr-dimen: Public generic functions
Method, attr-dir: Public generic functions
Method, attr-diredgeconstraints: Public generic functions
Method, attr-distortion: Public generic functions
Method, attr-dpi: Public generic functions
Method, attr-edgehref: Public generic functions
Method, attr-edgetarget: Public generic functions
Method, attr-edgetooltip: Public generic functions
Method, attr-epsilon: Public generic functions
Method, attr-esep: Public generic functions
Method, attr-fillcolor: Public generic functions
Method, attr-fixedsize: Public generic functions
Method, attr-fontcolor: Public generic functions
Method, attr-fontname: Public generic functions
Method, attr-fontnames: Public generic functions
Method, attr-fontpath: Public generic functions
Method, attr-fontsize: Public generic functions
Method, attr-forcelabels: Public generic functions
Method, attr-gradientangle: Public generic functions
Method, attr-group: Public generic functions
Method, attr-headclip: Public generic functions
Method, attr-headhref: Public generic functions
Method, attr-headlabel: Public generic functions
Method, attr-headport: Public generic functions
Method, attr-headtarget: Public generic functions
Method, attr-headtooltip: Public generic functions
Method, attr-head_lp: Public generic functions
Method, attr-height: Public generic functions
Method, attr-href: Public generic functions
Method, attr-id: Public generic functions
Method, attr-image: Public generic functions
Method, attr-imagepath: Public generic functions
Method, attr-imagepos: Public generic functions
Method, attr-imagescale: Public generic functions
Method, attr-inputscale: Public generic functions
Method, attr-label: Public generic functions
Method, attr-labelangle: Public generic functions
Method, attr-labeldistance: Public generic functions
Method, attr-labelfloat: Public generic functions
Method, attr-labelfontcolor: Public generic functions
Method, attr-labelfontname: Public generic functions
Method, attr-labelfontsize: Public generic functions
Method, attr-labelhref: Public generic functions
Method, attr-labeljust: Public generic functions
Method, attr-labelloc: Public generic functions
Method, attr-labeltarget: Public generic functions
Method, attr-labeltooltip: Public generic functions
Method, attr-label_scheme: Public generic functions
Method, attr-landscape: Public generic functions
Method, attr-layer: Public generic functions
Method, attr-layerlistsep: Public generic functions
Method, attr-layers: Public generic functions
Method, attr-layerselect: Public generic functions
Method, attr-layersep: Public generic functions
Method, attr-layout: Public generic functions
Method, attr-len: Public generic functions
Method, attr-levels: Public generic functions
Method, attr-levelsgap: Public generic functions
Method, attr-lhead: Public generic functions
Method, attr-lheight: Public generic functions
Method, attr-lp: Public generic functions
Method, attr-ltail: Public generic functions
Method, attr-lwidth: Public generic functions
Method, attr-margin: Public generic functions
Method, attr-maxiter: Public generic functions
Method, attr-mclimit: Public generic functions
Method, attr-mindist: Public generic functions
Method, attr-minlen: Public generic functions
Method, attr-mode: Public generic functions
Method, attr-model: Public generic functions
Method, attr-mosek: Public generic functions
Method, attr-newrank: Public generic functions
Method, attr-nodesep: Public generic functions
Method, attr-nojustify: Public generic functions
Method, attr-normalize: Public generic functions
Method, attr-notranslate: Public generic functions
Method, attr-nslimit: Public generic functions
Method, attr-nslimit1: Public generic functions
Method, attr-ordering: Public generic functions
Method, attr-orientation: Public generic functions
Method, attr-outputorder: Public generic functions
Method, attr-overlap: Public generic functions
Method, attr-overlap_scaling: Public generic functions
Method, attr-overlap_shrink: Public generic functions
Method, attr-pack: Public generic functions
Method, attr-packmode: Public generic functions
Method, attr-pad: Public generic functions
Method, attr-page: Public generic functions
Method, attr-pagedir: Public generic functions
Method, attr-pencolor: Public generic functions
Method, attr-penwidth: Public generic functions
Method, attr-peripheries: Public generic functions
Method, attr-pin: Public generic functions
Method, attr-pos: Public generic functions
Method, attr-quadtree: Public generic functions
Method, attr-quantum: Public generic functions
Method, attr-rank: Public generic functions
Method, attr-rankdir: Public generic functions
Method, attr-ranksep: Public generic functions
Method, attr-ratio: Public generic functions
Method, attr-rects: Public generic functions
Method, attr-regular: Public generic functions
Method, attr-remincross: Public generic functions
Method, attr-repulsiveforce: Public generic functions
Method, attr-resolution: Public generic functions
Method, attr-root: Public generic functions
Method, attr-rotate: Public generic functions
Method, attr-rotation: Public generic functions
Method, attr-samehead: Public generic functions
Method, attr-sametail: Public generic functions
Method, attr-samplepoints: Public generic functions
Method, attr-scale: Public generic functions
Method, attr-searchsize: Public generic functions
Method, attr-sep: Public generic functions
Method, attr-shape: Public generic functions
Method, attr-shapefile: Public generic functions
Method, attr-showboxes: Public generic functions
Method, attr-sides: Public generic functions
Method, attr-size: Public generic functions
Method, attr-skew: Public generic functions
Method, attr-smoothing: Public generic functions
Method, attr-sortv: Public generic functions
Method, attr-splines: Public generic functions
Method, attr-start: Public generic functions
Method, attr-style: Public generic functions
Method, attr-stylesheet: Public generic functions
Method, attr-tailclip: Public generic functions
Method, attr-tailhref: Public generic functions
Method, attr-taillabel: Public generic functions
Method, attr-tailport: Public generic functions
Method, attr-tailtarget: Public generic functions
Method, attr-tailtooltip: Public generic functions
Method, attr-tail_lp: Public generic functions
Method, attr-target: Public generic functions
Method, attr-tooltip: Public generic functions
Method, attr-truecolor: Public generic functions
Method, attr-vertices: Public generic functions
Method, attr-viewport: Public generic functions
Method, attr-voro_margin: Public generic functions
Method, attr-weight: Public generic functions
Method, attr-width: Public generic functions
Method, attr-xdotversion: Public generic functions
Method, attr-xlabel: Public generic functions
Method, attr-xlp: Public generic functions
Method, attr-z: Public generic functions
Method, both-edges: Public generic functions
Method, both-edges: Public generic functions
Method, clear: Public generic functions
Method, connected-nodes: Public generic functions
Method, copy: Public generic functions
Method, count-edges: Public generic functions
Method, count-nodes: Public generic functions
Method, edge-names: Public generic functions
Method, edges: Public generic functions
Method, empty: Public generic functions
Method, find-backward-nodes: Public generic functions
Method, find-backward-nodes: Public generic functions
Method, find-backward-nodes: Public generic functions
Method, find-both-nodes: Public generic functions
Method, find-both-nodes: Public generic functions
Method, find-edge: Public generic functions
Method, find-forward-nodes: Public generic functions
Method, find-forward-nodes: Public generic functions
Method, find-forward-nodes: Public generic functions
Method, find-node: Public generic functions
Method, head: Public generic functions
Method, hierarchy-node-names: Public generic functions
Method, ht-edge-names: Private generic functions
Method, ht-inlet-edges: Private generic functions
Method, ht-node-names: Private generic functions
Method, ht-outlet-edges: Private generic functions
Method, ids: Public generic functions
Method, ids: Public generic functions
Method, init-distance-graph: Private generic functions
Method, initialize-instance: Public standalone methods
Method, initialize-instance: Public standalone methods
Method, initialize-instance: Public standalone methods
Method, initialize-instance: Public standalone methods
Method, inlet-edges: Public generic functions
Method, inlet-edges: Public generic functions
Method, inlet-nodes: Public generic functions
Method, inlet-p: Public generic functions
Method, inlet-p: Public generic functions
Method, insert-to: Public generic functions
Method, insert-to: Public generic functions
Method, insert-to: Public generic functions
Method, into-container-p: Public generic functions
Method, into-container-p: Public generic functions
Method, isolated-nodes: Public generic functions
Method, isolated-p: Public generic functions
Method, isolated-p: Public generic functions
Method, name: Public generic functions
Method, name: Public generic functions
Method, node-names: Public generic functions
Method, nodes: Public generic functions
Method, outlet-edges: Public generic functions
Method, outlet-edges: Public generic functions
Method, outlet-nodes: Public generic functions
Method, outlet-p: Public generic functions
Method, outlet-p: Public generic functions
Method, owner: Public generic functions
Method, path: Public generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, printer-viewer-dpi: Private generic functions
Method, printer-viewer-executable: Private generic functions
Method, printer-viewer-graphviz-prg: Private generic functions
Method, printer-viewer-out-type: Private generic functions
Method, rankdir: Private generic functions
Method, remove-from: Public generic functions
Method, remove-from: Public generic functions
Method, remove-from: Public generic functions
Method, tail: Public generic functions
Method, to-graphviz: Public generic functions
Method, to-graphviz: Public generic functions
Method, to-graphviz: Public generic functions
Method, to-list: Public generic functions
Method, to-string: Public generic functions
Method, to-string: Public generic functions
Method, to-string: Public generic functions
Method, view-graph: Public generic functions
Method, view-graph-new: Public generic functions
Method, weight: Public generic functions
mk-attributes: Private ordinary functions
mk-collected: Private ordinary functions

N
name: Public generic functions
name: Public generic functions
name: Public generic functions
node-names: Public generic functions
node-names: Public generic functions
nodes: Public generic functions
nodes: Public generic functions

O
outlet-edges: Public generic functions
outlet-edges: Public generic functions
outlet-edges: Public generic functions
outlet-nodes: Public generic functions
outlet-nodes: Public generic functions
outlet-p: Public generic functions
outlet-p: Public generic functions
outlet-p: Public generic functions
owner: Public generic functions
owner: Public generic functions

P
path: Public generic functions
path: Public generic functions
pr-obj-after: Private macros
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
printer-viewer-dpi: Private generic functions
printer-viewer-dpi: Private generic functions
printer-viewer-executable: Private generic functions
printer-viewer-executable: Private generic functions
printer-viewer-graphviz-prg: Private generic functions
printer-viewer-graphviz-prg: Private generic functions
printer-viewer-out-type: Private generic functions
printer-viewer-out-type: Private generic functions

R
rankdir: Private generic functions
rankdir: Private generic functions
remove-from: Public generic functions
remove-from: Public generic functions
remove-from: Public generic functions
remove-from: Public generic functions

T
tail: Public generic functions
tail: Public generic functions
to-graphviz: Public generic functions
to-graphviz: Public generic functions
to-graphviz: Public generic functions
to-graphviz: Public generic functions
to-list: Public generic functions
to-list: Public generic functions
to-string: Public generic functions
to-string: Public generic functions
to-string: Public generic functions
to-string: Public generic functions

V
view: Private ordinary functions
view-graph: Public generic functions
view-graph: Public generic functions
view-graph-new: Public generic functions
view-graph-new: Public generic functions

W
weight: Public generic functions
weight: Public generic functions

X
x-postamble: Private ordinary functions
x-preamble: Private ordinary functions


A.3 Variables

Jump to:   *  
C   D   E   G   H   N   O   R   S   T   W  
Index Entry  Section

*
*attributes*: Private special variables
*filter-circo*: Public special variables
*filter-dot*: Public special variables
*filter-fdp*: Public special variables
*filter-neato*: Public special variables
*filter-patchwork*: Public special variables
*filter-sfdp*: Public special variables
*filter-twopi*: Public special variables
*graph-count*: Public special variables
*graphviz.org*: Private special variables
*output-path*: Public special variables
*viewer-path*: Public special variables

C
counter: Public classes

D
dpi: Public classes

E
edges: Public classes
executable: Public classes

G
graphviz-prg: Public classes

H
head: Public classes
ht-edge-names: Public classes
ht-inlet-edges: Public classes
ht-node-names: Public classes
ht-outlet-edges: Public classes

N
name: Public classes
nodes: Public classes

O
out-type: Public classes
owner: Public classes

R
rankdir: Public classes

S
sl-area: Public classes
sl-arrowhead: Public classes
sl-arrowsize: Public classes
sl-arrowtail: Public classes
sl-bb: Public classes
sl-bgcolor: Public classes
sl-center: Public classes
sl-charset: Public classes
sl-class: Public classes
sl-clusterrank: Public classes
sl-color: Public classes
sl-colorscheme: Public classes
sl-comment: Public classes
sl-compound: Public classes
sl-concentrate: Public classes
sl-constraint: Public classes
sl-decorate: Public classes
sl-defaultdist: Public classes
sl-dim: Public classes
sl-dimen: Public classes
sl-dir: Public classes
sl-diredgeconstraints: Public classes
sl-distortion: Public classes
sl-dpi: Public classes
sl-edgehref: Public classes
sl-edgetarget: Public classes
sl-edgetooltip: Public classes
sl-epsilon: Public classes
sl-esep: Public classes
sl-fillcolor: Public classes
sl-fixedsize: Public classes
sl-fontcolor: Public classes
sl-fontname: Public classes
sl-fontnames: Public classes
sl-fontpath: Public classes
sl-fontsize: Public classes
sl-forcelabels: Public classes
sl-gradientangle: Public classes
sl-group: Public classes
sl-headclip: Public classes
sl-headhref: Public classes
sl-headlabel: Public classes
sl-headport: Public classes
sl-headtarget: Public classes
sl-headtooltip: Public classes
sl-head_lp: Public classes
sl-height: Public classes
sl-href: Public classes
sl-id: Public classes
sl-image: Public classes
sl-imagepath: Public classes
sl-imagepos: Public classes
sl-imagescale: Public classes
sl-inputscale: Public classes
sl-label: Public classes
sl-labelangle: Public classes
sl-labeldistance: Public classes
sl-labelfloat: Public classes
sl-labelfontcolor: Public classes
sl-labelfontname: Public classes
sl-labelfontsize: Public classes
sl-labelhref: Public classes
sl-labeljust: Public classes
sl-labelloc: Public classes
sl-labeltarget: Public classes
sl-labeltooltip: Public classes
sl-label_scheme: Public classes
sl-landscape: Public classes
sl-layer: Public classes
sl-layerlistsep: Public classes
sl-layers: Public classes
sl-layerselect: Public classes
sl-layersep: Public classes
sl-layout: Public classes
sl-len: Public classes
sl-levels: Public classes
sl-levelsgap: Public classes
sl-lhead: Public classes
sl-lheight: Public classes
sl-lp: Public classes
sl-ltail: Public classes
sl-lwidth: Public classes
sl-margin: Public classes
sl-maxiter: Public classes
sl-mclimit: Public classes
sl-mindist: Public classes
sl-minlen: Public classes
sl-mode: Public classes
sl-model: Public classes
sl-mosek: Public classes
sl-newrank: Public classes
sl-nodesep: Public classes
sl-nojustify: Public classes
sl-normalize: Public classes
sl-notranslate: Public classes
sl-nslimit: Public classes
sl-nslimit1: Public classes
sl-ordering: Public classes
sl-orientation: Public classes
sl-outputorder: Public classes
sl-overlap: Public classes
sl-overlap_scaling: Public classes
sl-overlap_shrink: Public classes
sl-pack: Public classes
sl-packmode: Public classes
sl-pad: Public classes
sl-page: Public classes
sl-pagedir: Public classes
sl-pencolor: Public classes
sl-penwidth: Public classes
sl-peripheries: Public classes
sl-pin: Public classes
sl-pos: Public classes
sl-quadtree: Public classes
sl-quantum: Public classes
sl-rank: Public classes
sl-rankdir: Public classes
sl-ranksep: Public classes
sl-ratio: Public classes
sl-rects: Public classes
sl-regular: Public classes
sl-remincross: Public classes
sl-repulsiveforce: Public classes
sl-resolution: Public classes
sl-root: Public classes
sl-rotate: Public classes
sl-rotation: Public classes
sl-samehead: Public classes
sl-sametail: Public classes
sl-samplepoints: Public classes
sl-scale: Public classes
sl-searchsize: Public classes
sl-sep: Public classes
sl-shape: Public classes
sl-shapefile: Public classes
sl-showboxes: Public classes
sl-sides: Public classes
sl-size: Public classes
sl-skew: Public classes
sl-smoothing: Public classes
sl-sortv: Public classes
sl-splines: Public classes
sl-start: Public classes
sl-style: Public classes
sl-stylesheet: Public classes
sl-tailclip: Public classes
sl-tailhref: Public classes
sl-taillabel: Public classes
sl-tailport: Public classes
sl-tailtarget: Public classes
sl-tailtooltip: Public classes
sl-tail_lp: Public classes
sl-target: Public classes
sl-tooltip: Public classes
sl-truecolor: Public classes
sl-vertices: Public classes
sl-viewport: Public classes
sl-voro_margin: Public classes
sl-weight: Public classes
sl-width: Public classes
sl-xdotversion: Public classes
sl-xlabel: Public classes
sl-xlp: Public classes
sl-z: Public classes
Slot, counter: Public classes
Slot, dpi: Public classes
Slot, edges: Public classes
Slot, executable: Public classes
Slot, graphviz-prg: Public classes
Slot, head: Public classes
Slot, ht-edge-names: Public classes
Slot, ht-inlet-edges: Public classes
Slot, ht-node-names: Public classes
Slot, ht-outlet-edges: Public classes
Slot, name: Public classes
Slot, nodes: Public classes
Slot, out-type: Public classes
Slot, owner: Public classes
Slot, rankdir: Public classes
Slot, sl-area: Public classes
Slot, sl-arrowhead: Public classes
Slot, sl-arrowsize: Public classes
Slot, sl-arrowtail: Public classes
Slot, sl-bb: Public classes
Slot, sl-bgcolor: Public classes
Slot, sl-center: Public classes
Slot, sl-charset: Public classes
Slot, sl-class: Public classes
Slot, sl-clusterrank: Public classes
Slot, sl-color: Public classes
Slot, sl-colorscheme: Public classes
Slot, sl-comment: Public classes
Slot, sl-compound: Public classes
Slot, sl-concentrate: Public classes
Slot, sl-constraint: Public classes
Slot, sl-decorate: Public classes
Slot, sl-defaultdist: Public classes
Slot, sl-dim: Public classes
Slot, sl-dimen: Public classes
Slot, sl-dir: Public classes
Slot, sl-diredgeconstraints: Public classes
Slot, sl-distortion: Public classes
Slot, sl-dpi: Public classes
Slot, sl-edgehref: Public classes
Slot, sl-edgetarget: Public classes
Slot, sl-edgetooltip: Public classes
Slot, sl-epsilon: Public classes
Slot, sl-esep: Public classes
Slot, sl-fillcolor: Public classes
Slot, sl-fixedsize: Public classes
Slot, sl-fontcolor: Public classes
Slot, sl-fontname: Public classes
Slot, sl-fontnames: Public classes
Slot, sl-fontpath: Public classes
Slot, sl-fontsize: Public classes
Slot, sl-forcelabels: Public classes
Slot, sl-gradientangle: Public classes
Slot, sl-group: Public classes
Slot, sl-headclip: Public classes
Slot, sl-headhref: Public classes
Slot, sl-headlabel: Public classes
Slot, sl-headport: Public classes
Slot, sl-headtarget: Public classes
Slot, sl-headtooltip: Public classes
Slot, sl-head_lp: Public classes
Slot, sl-height: Public classes
Slot, sl-href: Public classes
Slot, sl-id: Public classes
Slot, sl-image: Public classes
Slot, sl-imagepath: Public classes
Slot, sl-imagepos: Public classes
Slot, sl-imagescale: Public classes
Slot, sl-inputscale: Public classes
Slot, sl-label: Public classes
Slot, sl-labelangle: Public classes
Slot, sl-labeldistance: Public classes
Slot, sl-labelfloat: Public classes
Slot, sl-labelfontcolor: Public classes
Slot, sl-labelfontname: Public classes
Slot, sl-labelfontsize: Public classes
Slot, sl-labelhref: Public classes
Slot, sl-labeljust: Public classes
Slot, sl-labelloc: Public classes
Slot, sl-labeltarget: Public classes
Slot, sl-labeltooltip: Public classes
Slot, sl-label_scheme: Public classes
Slot, sl-landscape: Public classes
Slot, sl-layer: Public classes
Slot, sl-layerlistsep: Public classes
Slot, sl-layers: Public classes
Slot, sl-layerselect: Public classes
Slot, sl-layersep: Public classes
Slot, sl-layout: Public classes
Slot, sl-len: Public classes
Slot, sl-levels: Public classes
Slot, sl-levelsgap: Public classes
Slot, sl-lhead: Public classes
Slot, sl-lheight: Public classes
Slot, sl-lp: Public classes
Slot, sl-ltail: Public classes
Slot, sl-lwidth: Public classes
Slot, sl-margin: Public classes
Slot, sl-maxiter: Public classes
Slot, sl-mclimit: Public classes
Slot, sl-mindist: Public classes
Slot, sl-minlen: Public classes
Slot, sl-mode: Public classes
Slot, sl-model: Public classes
Slot, sl-mosek: Public classes
Slot, sl-newrank: Public classes
Slot, sl-nodesep: Public classes
Slot, sl-nojustify: Public classes
Slot, sl-normalize: Public classes
Slot, sl-notranslate: Public classes
Slot, sl-nslimit: Public classes
Slot, sl-nslimit1: Public classes
Slot, sl-ordering: Public classes
Slot, sl-orientation: Public classes
Slot, sl-outputorder: Public classes
Slot, sl-overlap: Public classes
Slot, sl-overlap_scaling: Public classes
Slot, sl-overlap_shrink: Public classes
Slot, sl-pack: Public classes
Slot, sl-packmode: Public classes
Slot, sl-pad: Public classes
Slot, sl-page: Public classes
Slot, sl-pagedir: Public classes
Slot, sl-pencolor: Public classes
Slot, sl-penwidth: Public classes
Slot, sl-peripheries: Public classes
Slot, sl-pin: Public classes
Slot, sl-pos: Public classes
Slot, sl-quadtree: Public classes
Slot, sl-quantum: Public classes
Slot, sl-rank: Public classes
Slot, sl-rankdir: Public classes
Slot, sl-ranksep: Public classes
Slot, sl-ratio: Public classes
Slot, sl-rects: Public classes
Slot, sl-regular: Public classes
Slot, sl-remincross: Public classes
Slot, sl-repulsiveforce: Public classes
Slot, sl-resolution: Public classes
Slot, sl-root: Public classes
Slot, sl-rotate: Public classes
Slot, sl-rotation: Public classes
Slot, sl-samehead: Public classes
Slot, sl-sametail: Public classes
Slot, sl-samplepoints: Public classes
Slot, sl-scale: Public classes
Slot, sl-searchsize: Public classes
Slot, sl-sep: Public classes
Slot, sl-shape: Public classes
Slot, sl-shapefile: Public classes
Slot, sl-showboxes: Public classes
Slot, sl-sides: Public classes
Slot, sl-size: Public classes
Slot, sl-skew: Public classes
Slot, sl-smoothing: Public classes
Slot, sl-sortv: Public classes
Slot, sl-splines: Public classes
Slot, sl-start: Public classes
Slot, sl-style: Public classes
Slot, sl-stylesheet: Public classes
Slot, sl-tailclip: Public classes
Slot, sl-tailhref: Public classes
Slot, sl-taillabel: Public classes
Slot, sl-tailport: Public classes
Slot, sl-tailtarget: Public classes
Slot, sl-tailtooltip: Public classes
Slot, sl-tail_lp: Public classes
Slot, sl-target: Public classes
Slot, sl-tooltip: Public classes
Slot, sl-truecolor: Public classes
Slot, sl-vertices: Public classes
Slot, sl-viewport: Public classes
Slot, sl-voro_margin: Public classes
Slot, sl-weight: Public classes
Slot, sl-width: Public classes
Slot, sl-xdotversion: Public classes
Slot, sl-xlabel: Public classes
Slot, sl-xlp: Public classes
Slot, sl-z: Public classes
Slot, tail: Public classes
Slot, weight: Public classes
Special Variable, *attributes*: Private special variables
Special Variable, *filter-circo*: Public special variables
Special Variable, *filter-dot*: Public special variables
Special Variable, *filter-fdp*: Public special variables
Special Variable, *filter-neato*: Public special variables
Special Variable, *filter-patchwork*: Public special variables
Special Variable, *filter-sfdp*: Public special variables
Special Variable, *filter-twopi*: Public special variables
Special Variable, *graph-count*: Public special variables
Special Variable, *graphviz.org*: Private special variables
Special Variable, *output-path*: Public special variables
Special Variable, *viewer-path*: Public special variables

T
tail: Public classes

W
weight: Public classes


A.4 Data types

Jump to:   <  
A   B   C   D   E   F   G   I   M   N   O   P   R   S   T   V  
Index Entry  Section

<
<area>: Public classes
<arrowhead>: Public classes
<arrowsize>: Public classes
<arrowtail>: Public classes
<bb>: Public classes
<bgcolor>: Public classes
<center>: Public classes
<charset>: Public classes
<class>: Public classes
<cluster-attributes>: Private classes
<clusterrank>: Public classes
<color>: Public classes
<colorscheme>: Public classes
<comment>: Public classes
<compound>: Public classes
<concentrate>: Public classes
<constraint>: Public classes
<decorate>: Public classes
<defaultdist>: Public classes
<dim>: Public classes
<dimen>: Public classes
<dir>: Public classes
<diredgeconstraints>: Public classes
<distortion>: Public classes
<dpi>: Public classes
<edge-attributes>: Private classes
<edge>: Public classes
<edgehref>: Public classes
<edgetarget>: Public classes
<edgetooltip>: Public classes
<epsilon>: Public classes
<esep>: Public classes
<fillcolor>: Public classes
<fixedsize>: Public classes
<fontcolor>: Public classes
<fontname>: Public classes
<fontnames>: Public classes
<fontpath>: Public classes
<fontsize>: Public classes
<forcelabels>: Public classes
<gradientangle>: Public classes
<graph-attributes>: Private classes
<graph>: Public classes
<group>: Public classes
<headclip>: Public classes
<headhref>: Public classes
<headlabel>: Public classes
<headport>: Public classes
<headtarget>: Public classes
<headtooltip>: Public classes
<head_lp>: Public classes
<height>: Public classes
<href>: Public classes
<id>: Public classes
<image>: Public classes
<imagepath>: Public classes
<imagepos>: Public classes
<imagescale>: Public classes
<inputscale>: Public classes
<label>: Public classes
<labelangle>: Public classes
<labeldistance>: Public classes
<labelfloat>: Public classes
<labelfontcolor>: Public classes
<labelfontname>: Public classes
<labelfontsize>: Public classes
<labelhref>: Public classes
<labeljust>: Public classes
<labelloc>: Public classes
<labeltarget>: Public classes
<labeltooltip>: Public classes
<label_scheme>: Public classes
<landscape>: Public classes
<layer>: Public classes
<layerlistsep>: Public classes
<layers>: Public classes
<layerselect>: Public classes
<layersep>: Public classes
<layout>: Public classes
<len>: Public classes
<levels>: Public classes
<levelsgap>: Public classes
<lhead>: Public classes
<lheight>: Public classes
<lp>: Public classes
<ltail>: Public classes
<lwidth>: Public classes
<margin>: Public classes
<maxiter>: Public classes
<mclimit>: Public classes
<mindist>: Public classes
<minlen>: Public classes
<mode>: Public classes
<model>: Public classes
<mosek>: Public classes
<newrank>: Public classes
<node-attributes>: Private classes
<node>: Public classes
<nodesep>: Public classes
<nojustify>: Public classes
<normalize>: Public classes
<notranslate>: Public classes
<nslimit1>: Public classes
<nslimit>: Public classes
<ordering>: Public classes
<orientation>: Public classes
<outputorder>: Public classes
<overlap>: Public classes
<overlap_scaling>: Public classes
<overlap_shrink>: Public classes
<pack>: Public classes
<packmode>: Public classes
<pad>: Public classes
<page>: Public classes
<pagedir>: Public classes
<pdf-printer-viewer>: Public classes
<pencolor>: Public classes
<penwidth>: Public classes
<peripheries>: Public classes
<pin>: Public classes
<pos>: Public classes
<printer-viewer>: Public classes
<quadtree>: Public classes
<quantum>: Public classes
<rank>: Public classes
<rankdir>: Public classes
<ranksep>: Public classes
<ratio>: Public classes
<rects>: Public classes
<regular>: Public classes
<remincross>: Public classes
<repulsiveforce>: Public classes
<resolution>: Public classes
<root>: Public classes
<rotate>: Public classes
<rotation>: Public classes
<samehead>: Public classes
<sametail>: Public classes
<samplepoints>: Public classes
<scale>: Public classes
<searchsize>: Public classes
<sep>: Public classes
<shape>: Public classes
<shapefile>: Public classes
<showboxes>: Public classes
<sides>: Public classes
<size>: Public classes
<skew>: Public classes
<smoothing>: Public classes
<sortv>: Public classes
<splines>: Public classes
<start>: Public classes
<style>: Public classes
<stylesheet>: Public classes
<subgraphs-attributes>: Private classes
<svg-printer-viewer>: Public classes
<tailclip>: Public classes
<tailhref>: Public classes
<taillabel>: Public classes
<tailport>: Public classes
<tailtarget>: Public classes
<tailtooltip>: Public classes
<tail_lp>: Public classes
<target>: Public classes
<tooltip>: Public classes
<truecolor>: Public classes
<vertices>: Public classes
<viewport>: Public classes
<voro_margin>: Public classes
<weight>: Public classes
<width>: Public classes
<xdotversion>: Public classes
<xlabel>: Public classes
<xlp>: Public classes
<z>: Public classes

A
alg.lisp: The mnas-graph/alg/src/alg/alg․lisp file
attributes.lisp: The mnas-graph/core/src/core/classes/attributes․lisp file

B
both-edges.lisp: The mnas-graph/core/src/core/methods/both-edges․lisp file

C
Class, <area>: Public classes
Class, <arrowhead>: Public classes
Class, <arrowsize>: Public classes
Class, <arrowtail>: Public classes
Class, <bb>: Public classes
Class, <bgcolor>: Public classes
Class, <center>: Public classes
Class, <charset>: Public classes
Class, <class>: Public classes
Class, <cluster-attributes>: Private classes
Class, <clusterrank>: Public classes
Class, <color>: Public classes
Class, <colorscheme>: Public classes
Class, <comment>: Public classes
Class, <compound>: Public classes
Class, <concentrate>: Public classes
Class, <constraint>: Public classes
Class, <decorate>: Public classes
Class, <defaultdist>: Public classes
Class, <dim>: Public classes
Class, <dimen>: Public classes
Class, <dir>: Public classes
Class, <diredgeconstraints>: Public classes
Class, <distortion>: Public classes
Class, <dpi>: Public classes
Class, <edge-attributes>: Private classes
Class, <edge>: Public classes
Class, <edgehref>: Public classes
Class, <edgetarget>: Public classes
Class, <edgetooltip>: Public classes
Class, <epsilon>: Public classes
Class, <esep>: Public classes
Class, <fillcolor>: Public classes
Class, <fixedsize>: Public classes
Class, <fontcolor>: Public classes
Class, <fontname>: Public classes
Class, <fontnames>: Public classes
Class, <fontpath>: Public classes
Class, <fontsize>: Public classes
Class, <forcelabels>: Public classes
Class, <gradientangle>: Public classes
Class, <graph-attributes>: Private classes
Class, <graph>: Public classes
Class, <group>: Public classes
Class, <headclip>: Public classes
Class, <headhref>: Public classes
Class, <headlabel>: Public classes
Class, <headport>: Public classes
Class, <headtarget>: Public classes
Class, <headtooltip>: Public classes
Class, <head_lp>: Public classes
Class, <height>: Public classes
Class, <href>: Public classes
Class, <id>: Public classes
Class, <image>: Public classes
Class, <imagepath>: Public classes
Class, <imagepos>: Public classes
Class, <imagescale>: Public classes
Class, <inputscale>: Public classes
Class, <label>: Public classes
Class, <labelangle>: Public classes
Class, <labeldistance>: Public classes
Class, <labelfloat>: Public classes
Class, <labelfontcolor>: Public classes
Class, <labelfontname>: Public classes
Class, <labelfontsize>: Public classes
Class, <labelhref>: Public classes
Class, <labeljust>: Public classes
Class, <labelloc>: Public classes
Class, <labeltarget>: Public classes
Class, <labeltooltip>: Public classes
Class, <label_scheme>: Public classes
Class, <landscape>: Public classes
Class, <layer>: Public classes
Class, <layerlistsep>: Public classes
Class, <layers>: Public classes
Class, <layerselect>: Public classes
Class, <layersep>: Public classes
Class, <layout>: Public classes
Class, <len>: Public classes
Class, <levels>: Public classes
Class, <levelsgap>: Public classes
Class, <lhead>: Public classes
Class, <lheight>: Public classes
Class, <lp>: Public classes
Class, <ltail>: Public classes
Class, <lwidth>: Public classes
Class, <margin>: Public classes
Class, <maxiter>: Public classes
Class, <mclimit>: Public classes
Class, <mindist>: Public classes
Class, <minlen>: Public classes
Class, <mode>: Public classes
Class, <model>: Public classes
Class, <mosek>: Public classes
Class, <newrank>: Public classes
Class, <node-attributes>: Private classes
Class, <node>: Public classes
Class, <nodesep>: Public classes
Class, <nojustify>: Public classes
Class, <normalize>: Public classes
Class, <notranslate>: Public classes
Class, <nslimit1>: Public classes
Class, <nslimit>: Public classes
Class, <ordering>: Public classes
Class, <orientation>: Public classes
Class, <outputorder>: Public classes
Class, <overlap>: Public classes
Class, <overlap_scaling>: Public classes
Class, <overlap_shrink>: Public classes
Class, <pack>: Public classes
Class, <packmode>: Public classes
Class, <pad>: Public classes
Class, <page>: Public classes
Class, <pagedir>: Public classes
Class, <pdf-printer-viewer>: Public classes
Class, <pencolor>: Public classes
Class, <penwidth>: Public classes
Class, <peripheries>: Public classes
Class, <pin>: Public classes
Class, <pos>: Public classes
Class, <printer-viewer>: Public classes
Class, <quadtree>: Public classes
Class, <quantum>: Public classes
Class, <rank>: Public classes
Class, <rankdir>: Public classes
Class, <ranksep>: Public classes
Class, <ratio>: Public classes
Class, <rects>: Public classes
Class, <regular>: Public classes
Class, <remincross>: Public classes
Class, <repulsiveforce>: Public classes
Class, <resolution>: Public classes
Class, <root>: Public classes
Class, <rotate>: Public classes
Class, <rotation>: Public classes
Class, <samehead>: Public classes
Class, <sametail>: Public classes
Class, <samplepoints>: Public classes
Class, <scale>: Public classes
Class, <searchsize>: Public classes
Class, <sep>: Public classes
Class, <shape>: Public classes
Class, <shapefile>: Public classes
Class, <showboxes>: Public classes
Class, <sides>: Public classes
Class, <size>: Public classes
Class, <skew>: Public classes
Class, <smoothing>: Public classes
Class, <sortv>: Public classes
Class, <splines>: Public classes
Class, <start>: Public classes
Class, <style>: Public classes
Class, <stylesheet>: Public classes
Class, <subgraphs-attributes>: Private classes
Class, <svg-printer-viewer>: Public classes
Class, <tailclip>: Public classes
Class, <tailhref>: Public classes
Class, <taillabel>: Public classes
Class, <tailport>: Public classes
Class, <tailtarget>: Public classes
Class, <tailtooltip>: Public classes
Class, <tail_lp>: Public classes
Class, <target>: Public classes
Class, <tooltip>: Public classes
Class, <truecolor>: Public classes
Class, <vertices>: Public classes
Class, <viewport>: Public classes
Class, <voro_margin>: Public classes
Class, <weight>: Public classes
Class, <width>: Public classes
Class, <xdotversion>: Public classes
Class, <xlabel>: Public classes
Class, <xlp>: Public classes
Class, <z>: Public classes
classes: The mnas-graph/core/src/core/classes module
clear.lisp: The mnas-graph/core/src/core/methods/clear․lisp file
connected-nodes.lisp: The mnas-graph/core/src/core/methods/connected-nodes․lisp file
copy.lisp: The mnas-graph/core/src/core/methods/copy․lisp file
count-edges.lisp: The mnas-graph/core/src/core/methods/count-edges․lisp file
count-nodes.lisp: The mnas-graph/core/src/core/methods/count-nodes․lisp file

D
demos.lisp: The mnas-graph/demos/src/demos/demos․lisp file

E
edge-names.lisp: The mnas-graph/core/src/core/methods/edge-names․lisp file
edge.lisp: The mnas-graph/core/src/core/classes/edge․lisp file
empty.lisp: The mnas-graph/core/src/core/methods/empty․lisp file

F
File, alg.lisp: The mnas-graph/alg/src/alg/alg․lisp file
File, attributes.lisp: The mnas-graph/core/src/core/classes/attributes․lisp file
File, both-edges.lisp: The mnas-graph/core/src/core/methods/both-edges․lisp file
File, clear.lisp: The mnas-graph/core/src/core/methods/clear․lisp file
File, connected-nodes.lisp: The mnas-graph/core/src/core/methods/connected-nodes․lisp file
File, copy.lisp: The mnas-graph/core/src/core/methods/copy․lisp file
File, count-edges.lisp: The mnas-graph/core/src/core/methods/count-edges․lisp file
File, count-nodes.lisp: The mnas-graph/core/src/core/methods/count-nodes․lisp file
File, demos.lisp: The mnas-graph/demos/src/demos/demos․lisp file
File, edge-names.lisp: The mnas-graph/core/src/core/methods/edge-names․lisp file
File, edge.lisp: The mnas-graph/core/src/core/classes/edge․lisp file
File, empty.lisp: The mnas-graph/core/src/core/methods/empty․lisp file
File, filter.lisp: The mnas-graph/filter/src/filter/filter․lisp file
File, find-backward-nodes.lisp: The mnas-graph/core/src/core/methods/find-backward-nodes․lisp file
File, find-both-nodes.lisp: The mnas-graph/core/src/core/methods/find-both-nodes․lisp file
File, find-edge.lisp: The mnas-graph/core/src/core/methods/find-edge․lisp file
File, find-forward-nodes.lisp: The mnas-graph/core/src/core/methods/find-forward-nodes․lisp file
File, find-node.lisp: The mnas-graph/core/src/core/methods/find-node․lisp file
File, generics.lisp: The mnas-graph/core/src/core/generics/generics․lisp file
File, graph.lisp: The mnas-graph/core/src/core/classes/graph․lisp file
File, ids.lisp: The mnas-graph/core/src/core/methods/ids․lisp file
File, inlet-edges.lisp: The mnas-graph/core/src/core/methods/inlet-edges․lisp file
File, inlet-nodes.lisp: The mnas-graph/core/src/core/methods/inlet-nodes․lisp file
File, inlet-p.lisp: The mnas-graph/core/src/core/methods/inlet-p․lisp file
File, insert-to.lisp: The mnas-graph/core/src/core/methods/insert-to․lisp file
File, into-container-p.lisp: The mnas-graph/core/src/core/methods/into-container-p․lisp file
File, isolated-nodes.lisp: The mnas-graph/core/src/core/methods/isolated-nodes․lisp file
File, isolated-p.lisp: The mnas-graph/core/src/core/methods/isolated-p․lisp file
File, mnas-graph.asd: The mnas-graph/mnas-graph․asd file
File, mnas-graph.lisp: The mnas-graph/core/src/core/mnas-graph․lisp file
File, name.lisp: The mnas-graph/core/src/core/methods/name․lisp file
File, node-names.lisp: The mnas-graph/core/src/core/methods/node-names․lisp file
File, node.lisp: The mnas-graph/core/src/core/classes/node․lisp file
File, outlet-edges.lisp: The mnas-graph/core/src/core/methods/outlet-edges․lisp file
File, outlet-nodes.lisp: The mnas-graph/core/src/core/methods/outlet-nodes․lisp file
File, outlet-p.lisp: The mnas-graph/core/src/core/methods/outlet-p․lisp file
File, printer-viewer.lisp: The mnas-graph/printer-viewer/src/printer-viewer/printer-viewer․lisp file
File, remove-from.lisp: The mnas-graph/core/src/core/methods/remove-from․lisp file
File, to-string.lisp: The mnas-graph/core/src/core/methods/to-string․lisp file
File, view.lisp: The mnas-graph/view/src/view/view․lisp file
filter.lisp: The mnas-graph/filter/src/filter/filter․lisp file
find-backward-nodes.lisp: The mnas-graph/core/src/core/methods/find-backward-nodes․lisp file
find-both-nodes.lisp: The mnas-graph/core/src/core/methods/find-both-nodes․lisp file
find-edge.lisp: The mnas-graph/core/src/core/methods/find-edge․lisp file
find-forward-nodes.lisp: The mnas-graph/core/src/core/methods/find-forward-nodes․lisp file
find-node.lisp: The mnas-graph/core/src/core/methods/find-node․lisp file

G
generics: The mnas-graph/core/src/core/generics module
generics.lisp: The mnas-graph/core/src/core/generics/generics․lisp file
graph.lisp: The mnas-graph/core/src/core/classes/graph․lisp file

I
ids.lisp: The mnas-graph/core/src/core/methods/ids․lisp file
inlet-edges.lisp: The mnas-graph/core/src/core/methods/inlet-edges․lisp file
inlet-nodes.lisp: The mnas-graph/core/src/core/methods/inlet-nodes․lisp file
inlet-p.lisp: The mnas-graph/core/src/core/methods/inlet-p․lisp file
insert-to.lisp: The mnas-graph/core/src/core/methods/insert-to․lisp file
into-container-p.lisp: The mnas-graph/core/src/core/methods/into-container-p․lisp file
isolated-nodes.lisp: The mnas-graph/core/src/core/methods/isolated-nodes․lisp file
isolated-p.lisp: The mnas-graph/core/src/core/methods/isolated-p․lisp file

M
methods: The mnas-graph/core/src/core/methods module
mnas-graph: The mnas-graph system
mnas-graph: The mnas-graph package
mnas-graph.asd: The mnas-graph/mnas-graph․asd file
mnas-graph.lisp: The mnas-graph/core/src/core/mnas-graph․lisp file
mnas-graph/alg: The mnas-graph/alg system
mnas-graph/alg: The mnas-graph/alg package
mnas-graph/core: The mnas-graph/core system
mnas-graph/demos: The mnas-graph/demos system
mnas-graph/demos: The mnas-graph/demos package
mnas-graph/filter: The mnas-graph/filter system
mnas-graph/filter: The mnas-graph/filter package
mnas-graph/printer-viewer: The mnas-graph/printer-viewer system
mnas-graph/printer-viewer: The mnas-graph/printer-viewer package
mnas-graph/view: The mnas-graph/view system
mnas-graph/view: The mnas-graph/view package
Module, classes: The mnas-graph/core/src/core/classes module
Module, generics: The mnas-graph/core/src/core/generics module
Module, methods: The mnas-graph/core/src/core/methods module
Module, src/alg: The mnas-graph/alg/src/alg module
Module, src/core: The mnas-graph/core/src/core module
Module, src/demos: The mnas-graph/demos/src/demos module
Module, src/filter: The mnas-graph/filter/src/filter module
Module, src/printer-viewer: The mnas-graph/printer-viewer/src/printer-viewer module
Module, src/view: The mnas-graph/view/src/view module

N
name.lisp: The mnas-graph/core/src/core/methods/name․lisp file
node-names.lisp: The mnas-graph/core/src/core/methods/node-names․lisp file
node.lisp: The mnas-graph/core/src/core/classes/node․lisp file

O
outlet-edges.lisp: The mnas-graph/core/src/core/methods/outlet-edges․lisp file
outlet-nodes.lisp: The mnas-graph/core/src/core/methods/outlet-nodes․lisp file
outlet-p.lisp: The mnas-graph/core/src/core/methods/outlet-p․lisp file

P
Package, mnas-graph: The mnas-graph package
Package, mnas-graph/alg: The mnas-graph/alg package
Package, mnas-graph/demos: The mnas-graph/demos package
Package, mnas-graph/filter: The mnas-graph/filter package
Package, mnas-graph/printer-viewer: The mnas-graph/printer-viewer package
Package, mnas-graph/view: The mnas-graph/view package
printer-viewer.lisp: The mnas-graph/printer-viewer/src/printer-viewer/printer-viewer․lisp file

R
remove-from.lisp: The mnas-graph/core/src/core/methods/remove-from․lisp file

S
src/alg: The mnas-graph/alg/src/alg module
src/core: The mnas-graph/core/src/core module
src/demos: The mnas-graph/demos/src/demos module
src/filter: The mnas-graph/filter/src/filter module
src/printer-viewer: The mnas-graph/printer-viewer/src/printer-viewer module
src/view: The mnas-graph/view/src/view module
System, mnas-graph: The mnas-graph system
System, mnas-graph/alg: The mnas-graph/alg system
System, mnas-graph/core: The mnas-graph/core system
System, mnas-graph/demos: The mnas-graph/demos system
System, mnas-graph/filter: The mnas-graph/filter system
System, mnas-graph/printer-viewer: The mnas-graph/printer-viewer system
System, mnas-graph/view: The mnas-graph/view system

T
to-string.lisp: The mnas-graph/core/src/core/methods/to-string․lisp file

V
view.lisp: The mnas-graph/view/src/view/view․lisp file