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-05-30T21:13:07-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

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

    r3992 r3993  
    2323  (:use :cl :heap)
    2424  (:export "PRIORITY-QUEUE"
    25            "MAKE-PRIORITY-QUEUE"
    26            "PRIORITY-QUEUE-INSERT"
    27            "PRIORITY-QUEUE-REMOVE"
    28            "PRIORITY-QUEUE-EMPTY-P"
    29            "PRIORITY-QUEUE-SIZE"
     25           "ENQUEUE"
     26           "DEQUEUE"
     27           "QUEUE-EMPTY-P"
     28           "QUEUE-SIZE"
    3029           )
    3130  (:documentation "Implements a priority queue."))
     
    3534(defclass priority-queue ()
    3635  ((heap :initarg :heap :accessor priority-queue-heap)
    37    (test :initarg :ters :accessor priority-queue-test))
     36   (test :initarg :test :accessor priority-queue-test))
    3837  (:documentation "Representa a priority queue."))
    3938
Note: See TracChangeset for help on using the changeset viewer.