home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / fp / ifp_dos.lzh / ifp / demo / SlowSort < prev    next >
Encoding:
Text File  |  1987-02-03  |  231 b   |  13 lines

  1. (*
  2.  * SlowSort
  3.  *
  4.  * Sort a sequence the hard way, i.e. take all permutations
  5.  * and pick one for which all elements are in order.
  6.  *)
  7. DEF SlowSort AS
  8.    Permute | 
  9.    FILTER 
  10.       [tl,tlr]|trans | EACH >= END | all 
  11.    END | 1;
  12.  
  13.