From b9ecc035049a2f88d9a99aeaa99eb237355f9864 Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Fri, 15 Sep 2023 17:08:26 +0200 Subject: [PATCH] Changed tensoriter to tensorfunc. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 84ad0ef..372368e 100644 --- a/README.md +++ b/README.md @@ -11,16 +11,16 @@ A simple C library implementing tensors. Still in development. Currently it only ├── tensor.h ├── tensorarray.c ├── tensorarray.h -├── tensoriter.c -├── tensoriter.h +├── tensorfunc.c +├── tensorfunc.h └── tests ├── main.c ├── main.h ├── tensor_assert.h ├── tensor_test.c ├── tensor_test.h - ├── tensoriter_test.c - └── tensoriter_test.h + ├── tensorfunc_test.c + └── tensorfunc_test.h ``` `dtype.h` _The file that defines the data type for the contents of the tensor. The default is float._ @@ -33,9 +33,9 @@ A simple C library implementing tensors. Still in development. Currently it only `tensorarray.h` _The header file for tensorarray.c._ -`tensoriter.c` _The file for iterators over tensors and map functions._ +`tensorfunc.c` _The file for iterators over tensors and map functions._ -`tensoriter.h` _The header file for tensoriter.c._ +`tensorfunc.h` _The header file for tensorfunc.c._ `tests` _The directory containing the unit tests._