/*
Copyright (C) 2003 David Bateman
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
In addition to the terms of the GPL, you are permitted to link
this program with any Open Source program, as defined by the
Open Source Initiative (www.opensource.org)
*/
#if !defined (octave_galois_h)
#define octave_galois_h 1
#if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION)
#pragma interface
#endif
#include <cstdlib>
#include <iostream>
#include <string>
#if defined(HAVE_OCTAVE_CONCAT) || defined(HAVE_OLD_OCTAVE_CONCAT)
#include <octave/dim-vector.h>
#endif
#include "galois.h"
#ifdef HAVE_SLLIST_H
#define LIST SLList
#define LISTSIZE length
#define SUBSREF_STRREF
#else
#include <list>
#define LIST std::list
#define LISTSIZE size
#define SUBSREF_STRREF &
#endif
// The keys of the values in the octave map
#define __GALOIS_PRIMPOLY_STR "prim_poly"
#define __GALOIS_ORDER_STR "m"
#define __GALOIS_DATA_STR "x"
#ifdef GALOIS_DISP_PRIVATES
#define __GALOIS_LENGTH_STR "n"
#define __GALOIS_ALPHA_TO_STR "alpha_to"
#define __GALOIS_INDEX_OF_STR "index_of"
#endif
class octave_value_list;
class tree_walker;
// Data structures.
class
octave_galois : public octave_base_value
{
public:
octave_galois (const Matrix& data = Matrix(0,0), const int _m = 1,
const int _primpoly = 0) {
gval = galois (data, _m, _primpoly); }
octave_galois (const galois& gm)
: octave_base_value (), gval (gm) { }
octave_galois (const octave_galois& s)
: octave_base_value (), gval (s.gval) { }
~octave_galois (void) { };
octave_value *clone (void) const { return new octave_galois (*this); }
octave_value *empty_clone (void) const { return new octave_galois (); }
octave_value subsref (const std::string SUBSREF_STRREF type,
const LIST<octave_value_list>& idx);
octave_value do_index_op (const octave_value_list& idx,
int resize_ok);
octave_value do_index_op (const octave_value_list& idx)
{ return do_index_op (idx, 0); }
void assign (const octave_value_list& idx, const galois& rhs);
#ifdef HAVE_ND_ARRAYS
dim_vector dims (void) const { return gval.dims (); }
#else
int rows (void) const { return gval.rows(); }
int columns (void) const { return gval.columns(); }
int length (void) const
{
int r = rows ();
int c = columns ();
return (r == 0 || c == 0) ? 0 : ((r > c) ? r : c);
}
#endif
#if defined(HAVE_OCTAVE_CONCAT) || defined(HAVE_OLD_OCTAVE_CONCAT)
octave_value resize (const dim_vector& dv) const;
size_t byte_size (void) const { return gval.byte_size (); }
#endif
octave_value all (int dim = 0) const { return gval.all(dim); }
octave_value any (int dim = 0) const { return gval.any(dim); }
bool is_matrix_type (void) const { return true; }
bool is_defined (void) const { return true; }
bool is_numeric_type (void) const { return true; }
bool is_constant (void) const { return true; }
bool is_true (void) const;
bool is_galois_type (void) const { return true; }
bool print_as_scalar (void) const;
void print (std::ostream& os, bool pr_as_read_syntax = false) const;
void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const;
bool print_name_tag (std::ostream& os, const std::string& name) const;
void print_info (std::ostream& os, const std::string& prefix) const;
bool is_real_matrix (void) const { return false; }
bool is_real_type (void) const { return false; }
// XXX FIXME XXX
bool valid_as_scalar_index (void) const { return false; }
double double_value (bool = false) const;
double scalar_value (bool frc_str_conv = false) const
{ return double_value (frc_str_conv); }
Matrix matrix_value (bool = false) const;
#ifdef HAVE_ND_ARRAYS
NDArray array_value (bool = false) const;
#endif
Complex complex_value (bool = false) const;
ComplexMatrix complex_matrix_value (bool = false) const
{ return ComplexMatrix ( matrix_value()); }
galois galois_value (void) const { return gval; }
octave_value_list dotref (const octave_value_list& idx);
int m (void) const { return gval.m(); }
int primpoly (void) const { return gval.primpoly(); }
#ifdef CLASS_HAS_LOAD_SAVE
bool save_ascii (std::ostream& os, bool& infnan_warned,
bool strip_nan_and_inf);
bool load_ascii (std::istream& is);
bool save_binary (std::ostream& os, bool& save_as_floats);
bool load_binary (std::istream& is, bool swap,
oct_mach_info::float_format fmt);
#if defined (HAVE_HDF5)
bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats);
bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug);
#endif
#endif
private:
// The array used to managed the Galios Field data
galois gval;
DECLARE_OCTAVE_ALLOCATOR
DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
};
#endif
/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; End: ***
*/
syntax highlighted by Code2HTML, v. 0.9.1