Cisco Cisco ASA 5585-X with FirePOWER SSP-20 许可信息

下载
页码 7263
             Open Source Used In Firepower System Version 6.0                                                                                                                                   
1581
 'Gnomovision' (which makes passes at compilers) written by James Hacker.
 
 <signature of Ty Coon>, 1 April 1989
 Ty Coon, President of Vice
 
This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Library General
Public License instead of this License.
 
2.147 Heap 0.8 
2.147.1 Available under license : 
Heap routines...
 
This is a collection of routines for managing a heap data structure.
 
There are two major components: a heap component, and an element
component.
 
A heap package basically keeps a collection of elements and is
able to return the smallest one.
 
The heap component interface is defined in Heap(3) and must be
supported by all heap packages.  Currently there are three heap
components provided:
 
   Heap::Fibonacci  (the preferred one)
   Heap::Binomial
   Heap::Binary
 
See the book "Algorithms" by Cormen, Leiserson, and Rivest for
details of the three heap packages.
 
The element package wraps the data that is to be stored and retrieved
on the heap.  You can inherit from the Heap::Elem object to embed
element capability into your own objects, or you can use the provided
objects to embed your data into elements without having to
specifically design your dat for that purpose.  The Heap::Elem(3)
module provides a detailed description of the requirements of an
element module.  (The main ones are that it must provide a cmp method
so that the elements can be ordered, and it must provide a heap
method that will either store or retrieve a scalar value so that the
heap routines can map an element reference into its position within
the heap.