Убрал ненужный код, ищу методы оптимизации
This commit is contained in:
parent
191b0205e6
commit
cb3f70cbd6
7 changed files with 123 additions and 136 deletions
|
|
@ -1,14 +1,13 @@
|
|||
#ifndef ARRAY_IO_H
|
||||
#define ARRAY_IO_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "io_status.h"
|
||||
#include "init_f.h"
|
||||
|
||||
io_status read_matrix(double *a, int n, const char *name, bool transpose);
|
||||
void print_matrix(const double *a, int n, int p, bool transpose);
|
||||
void init_matrix(double *a, int n, int k, bool transpose);
|
||||
io_status read_matrix(double *a, int n, const char *name);
|
||||
void print_matrix(const double *a, int n, int p);
|
||||
void init_matrix(double *a, int n, int k);
|
||||
void init_identity_matrix(double *a, int n);
|
||||
int read_or_init_matrix(double *a, char *name, int k, int n, bool transpose);
|
||||
int read_or_init_matrix(double *a, char *name, int k, int n);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue