mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 11:20:46 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
649 B
Text
13 lines
649 B
Text
This module will create sorting networks, a sequence of comparisons
|
|
that do not depend upon the results of prior comparisons.
|
|
|
|
There are several algorithms to generate sorting networks. This
|
|
module has three of them: Bose and Nelson's, Hibbard's, and
|
|
Batcher's Merge Exchange. It also has networks that were found
|
|
to be superior in comparison count to those generated automatically
|
|
by these algorithms.
|
|
|
|
There is a flexible formatting function that will allow you to
|
|
print out your network in many ways (see documentation). There
|
|
is also a graphical output function that will return the network
|
|
in an encapsulated postscript, SVG, or text form.
|