~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to include/iostream/ami_sort_impl.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
1
/****************************************************************************
3
2
 * 
4
 
 *  MODULE:     iostream
 
3
 *  MODULE:     iostream
5
4
 *
 
5
 
6
6
 *  COPYRIGHT (C) 2007 Laura Toma
7
7
 *   
 
8
 * 
 
9
 
 
10
 *  Iostream is a library that implements streams, external memory
 
11
 *  sorting on streams, and an external memory priority queue on
 
12
 *  streams. These are the fundamental components used in external
 
13
 *  memory algorithms.  
 
14
 
 
15
 * Credits: The library was developed by Laura Toma.  The kernel of
 
16
 * class STREAM is based on the similar class existent in the GPL TPIE
 
17
 * project developed at Duke University. The sorting and priority
 
18
 * queue have been developed by Laura Toma based on communications
 
19
 * with Rajiv Wickremesinghe. The library was developed as part of
 
20
 * porting Terraflow to GRASS in 2001.  PEARL upgrades in 2003 by
 
21
 * Rajiv Wickremesinghe as part of the Terracost project.
 
22
 
 
23
 * 
8
24
 *  This program is free software; you can redistribute it and/or modify
9
25
 *  it under the terms of the GNU General Public License as published by
10
26
 *  the Free Software Foundation; either version 2 of the License, or
11
27
 *  (at your option) any later version.
12
28
 *
 
29
 
13
30
 *  This program is distributed in the hope that it will be useful,
14
31
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 *  GNU General Public License for more details.
17
 
 *
18
 
 *****************************************************************************/
 
32
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
33
 *  General Public License for more details.  *
 
34
 *  **************************************************************************/
 
35
 
19
36
 
20
37
 
21
38
#ifndef AMI_SORT_IMPL_H