Last change
on this file since 823 was
821,
checked in by meunier, 9 years ago
|
- Added several versions of rosenfeld: { SLOW, FAST } x { FEATURES, NO_FEATURES }
- Added native linux compilation support
- Added a script to check results natively
- Started to refactor nrc code
|
File size:
504 bytes
|
Line | |
---|
1 | /* --------------------- */ |
---|
2 | /* --- matrix_dist.h --- */ |
---|
3 | /* --------------------- */ |
---|
4 | |
---|
5 | #ifndef __MATRIX_DIST_H__ |
---|
6 | #define __MATRIX_DIST_H__ |
---|
7 | |
---|
8 | #ifdef __cplusplus |
---|
9 | #pragma message ("C++") |
---|
10 | extern "C" { |
---|
11 | #endif |
---|
12 | |
---|
13 | uint32 ** dist_ui32matrix(int i0, int i1, int j0, int j1); |
---|
14 | void free_dist_ui32matrix(uint32 ** m, int i0, int i1, int j0, int j1); |
---|
15 | #if TARGET_OS == GIETVM |
---|
16 | uint32 ** remote_dist_ui32matrix(int i0, int i1, int j0, int j1, int x, int y); |
---|
17 | #endif |
---|
18 | |
---|
19 | #ifdef __cplusplus |
---|
20 | } |
---|
21 | #endif |
---|
22 | |
---|
23 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.