comparison liboctave/sparse-sort.h @ 5164:57077d0ddc8e

[project @ 2005-02-25 19:55:24 by jwe]
author jwe
date Fri, 25 Feb 2005 19:55:28 +0000
parents
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5163:9f3299378193 5164:57077d0ddc8e
1 /*
2
3 Copyright (C) 2004 David Bateman
4 Copyright (C) 1998-2004 Andy Adler
5
6 Octave is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 Octave is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 */
21
22 #if !defined (octave_sparse_sort_h)
23 #define octave_sparse_sort_h
24
25 #include "oct-sort.h"
26
27 class
28 octave_sparse_sort_idxl
29 {
30 public:
31 unsigned int r;
32 unsigned int c;
33 unsigned int idx;
34 };
35
36 bool octave_sparse_sidxl_comp (octave_sparse_sort_idxl* i,
37 octave_sparse_sort_idxl* j);
38
39 #endif
40
41 /*
42 ;;; Local Variables: ***
43 ;;; mode: C++ ***
44 ;;; End: ***
45 */