*** empty log message ***

This commit is contained in:
jiri 2008-11-26 13:30:30 +00:00
parent f32be3195a
commit 24cd7fff35
4 changed files with 9 additions and 7 deletions

View File

@ -154,7 +154,7 @@ private:
void copylist(const matel4<I,T> *l);
public:
//iterator
typedef class iterator {
class iterator {
private:
matel4<I,T> *p;
public:
@ -175,7 +175,7 @@ public:
//permiterator ... iterates also over all permutations, with a possibly scaled matrix element or skips permutations yielding equivalent result
//has to take into account the symmetry type of the fourindex
typedef class piterator {
class piterator {
private:
fourindexsymtype symmetry;
matel4<I,T> *p;
@ -343,7 +343,7 @@ public:
//this is possible, since one instance of this class can have only one active iterator at a time
//iterator
typedef class iterator {
class iterator {
private:
const fourindex_ext *base;
public:
@ -362,7 +362,7 @@ public:
//piterator ... iterate over all allowed permutations; conveniently expressed via the basic iterator which does the block-buffering
typedef class piterator {
class piterator {
private:
fourindex_ext *base;
matel4<I,T> my;

View File

@ -86,8 +86,8 @@ struct LA_traits_io<unsigned char>
//let's do some simple template metaprogramming and preprocessing
//to keep the thing general and compact
typedef class scalar_false {};
typedef class scalar_true {};
class scalar_false {};
class scalar_true {};
//default is non-scalar
template<typename C>

View File

@ -20,6 +20,8 @@
#include <iostream>
#include "laerror.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>

View File

@ -56,7 +56,7 @@ private:
void copylist(const matel<T> *l);
public:
//iterator
typedef class iterator {
class iterator {
private:
matel<T> *p;
public: