close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Ignore:
Timestamp:
2016-06-01T22:04:39-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/priority-queue.lisp

    r4140 r4141  
    3333
    3434(defclass priority-queue ()
    35   ((element-type :initarg :element-type :initform 'fixnum :reader priority-queue-element-type :type symbol)
    36    (test :initarg :test :reader priority-queue-test)
    37    (heap))
     35  ((element-type :initarg :element-type
     36                 :initform 'fixnum
     37                 :reader priority-queue-element-type
     38                 :type symbol
     39                 :documentation "Element type stored in this queue.")
     40   (test :initarg :test
     41         :reader priority-queue-test
     42         :documentation "The partial order used in element comparison.")
     43   (heap :documentation "A private slot holding the heap."))
    3844  (:documentation "Representa a priority queue based on heaps.
    3945Slots HEAP and TEST are read-only after they are initialized."))
Note: See TracChangeset for help on using the changeset viewer.