Skip to content

Commit b366127

Browse files
committed
Remove another file
1 parent f42c7e0 commit b366127

File tree

3 files changed

+2
-26
lines changed

3 files changed

+2
-26
lines changed

ArrayFire/Introduction/RangeGen.cpp

Lines changed: 0 additions & 12 deletions
This file was deleted.

ArrayFire/Introduction/RangeGen.h

Lines changed: 0 additions & 10 deletions
This file was deleted.

ArrayFire/Introduction/Source.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
#include <arrayfire.h>
2-
#include "RangeGen.h"
32

43
int main() {
5-
RangeGen range(-1.0, 1.0, 0.25);// (double begin, double end, double step)
6-
af::array x = af::seq(range.begin, 1.0, 0.25);
4+
af::array x = af::seq(-1.0, 1.0, 0.25);
75
af::array y = x * x;
86
af::print("y is ...", y);
97
return 0;
10-
}
8+
}

0 commit comments

Comments
 (0)