
- Removed obsolete Matvei source files (tasks 01–04, array/matrix/io_status modules, Makefile) - Introduced new Linux-compatible structure in Linux/Matvei - Updated build logic via new Makefile - Adjusted .gitignore to exclude new artifacts
8 lines
154 B
C
8 lines
154 B
C
#include <math.h>
|
|
#include "comparison.h"
|
|
|
|
int equal(double a, double b)
|
|
{
|
|
if (fabs(a - b) <= EPS * fmax(fabs(a), fabs(b))) return 1;
|
|
return 0;
|
|
}
|