Under development
.
├── CMakeLists.txt
├── README.md
├── User Guide.md
├── include
│ └── rudra
│ └── rudra.h
└── modules
├── ann
│ ├── CMakeLists.txt
│ ├── include
│ │ └── rudra
│ │ ├── ann
│ │ │ ├── activation.h
│ │ │ ├── def.h
│ │ │ ├── layer_manipulation.h
│ │ │ ├── matrix_operations.h
│ │ │ ├── optimizer.h
│ │ │ ├── propogation.h
│ │ │ ├── structure.h
│ │ │ ├── vector.h
│ │ │ └── xalloc.h
│ │ └── ann.h
│ └── src
│ ├── activation.c
│ ├── layer_manipulation.c
│ ├── matrix_operations.c
│ ├── optimizer.c
│ ├── propogation.c
│ ├── vector.c
│ └── xalloc.c
└── dp
├── CMakeLists.txt
├── include
│ └── rudra
│ ├── dp
│ │ ├── csv_operations.h
│ │ ├── def.h
│ │ ├── missing_data.h
│ │ ├── normalization.h
│ │ ├── operations.h
│ │ ├── vector.h
│ │ └── xalloc.h
│ └── dp.h
└── src
├── csv_operations.c
├── missing_data.c
├── normalization.c
├── operations.c
├── vector.c
└── xalloc.c