comparison src/ov.h @ 3195:7a5a5da64756

[project @ 1998-10-28 22:54:04 by jwe]
author jwe
date Wed, 28 Oct 1998 23:01:17 +0000
parents bef7b73c0724
children 44d82b369c78
comparison
equal deleted inserted replaced
3194:bea685644090 3195:7a5a5da64756
256 { return rep->rows (); } 256 { return rep->rows (); }
257 257
258 virtual int columns (void) const 258 virtual int columns (void) const
259 { return rep->columns (); } 259 { return rep->columns (); }
260 260
261 virtual int length (void) const
262 { return rep->length (); }
263
261 // Does this constant have a type? Both of these are provided since 264 // Does this constant have a type? Both of these are provided since
262 // it is sometimes more natural to write is_undefined() instead of 265 // it is sometimes more natural to write is_undefined() instead of
263 // ! is_defined(). 266 // ! is_defined().
264 267
265 virtual bool is_defined (void) const 268 virtual bool is_defined (void) const
551 extern int Vstruct_levels_to_print; 554 extern int Vstruct_levels_to_print;
552 555
553 // Allow divide by zero errors to be suppressed. 556 // Allow divide by zero errors to be suppressed.
554 extern bool Vwarn_divide_by_zero; 557 extern bool Vwarn_divide_by_zero;
555 558
559 // If TRUE, resize matrices when performing and indexed assignment and
560 // the indices are outside the current bounds.
561 extern bool Vresize_on_range_error;
562
556 // Indentation level for structures. 563 // Indentation level for structures.
557 extern int struct_indent; 564 extern int struct_indent;
558 565
559 extern void increment_struct_indent (void); 566 extern void increment_struct_indent (void);
560 extern void decrement_struct_indent (void); 567 extern void decrement_struct_indent (void);