~jfpacker/pyeigen/bugfixes-0.1

« back to all changes in this revision

Viewing changes to source/util/macros.h

  • Committer: Jussi Lepistö
  • Date: 2010-03-20 00:16:13 UTC
  • Revision ID: jussi.lepisto@iki.fi-20100320001613-f08k4wgogq8p7ogf
- Directory structure reorganization
- Matrix inverse & transpose
- Class methods for creating matrices and vectors
- Matrix * vector multiply
- Fix repr for matrix classes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef MACROS_H
 
2
#define MACROS_H
 
3
 
 
4
#define RETURN_NOTIMPLEMENTED \
 
5
{ \
 
6
        Py_INCREF(Py_NotImplemented); \
 
7
        return Py_NotImplemented; \
 
8
}
 
9
 
 
10
#endif