66 lines
2.6 KiB
C
66 lines
2.6 KiB
C
//=-------------------------------------------------------------------------=//
|
|
// base definition //
|
|
// //
|
|
// Copyright © 2021 Libre en Communs (contact@a-lec.org) //
|
|
// Copyright © 2021 Adrien Bourmault (neox@a-lec.org) //
|
|
// //
|
|
// This file is part of gem-graph. //
|
|
// //
|
|
// This program is free software: you can redistribute it and/or modify //
|
|
// it under the terms of the GNU Affero General Public License as //
|
|
// published by the Free Software Foundation, either version 3 of the //
|
|
// License, or (at your option) any later version. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU Affero General Public License for more details. //
|
|
// //
|
|
// You should have received a copy of the GNU Affero General Public License //
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
|
//=-------------------------------------------------------------------------=//
|
|
|
|
#include <sys/param.h>
|
|
#include <stdbool.h>
|
|
#include <assert.h>
|
|
#include <unistd.h>
|
|
#include <malloc.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <netinet/in.h>
|
|
#include <omp.h>
|
|
#include <math.h>
|
|
|
|
#define BASE_H
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
#define LOGMSG "<%s:%s()>"
|
|
|
|
#define printlog(FORMAT, ...) printf("\e[0;36m" LOGMSG "\e[0m" " " FORMAT \
|
|
"\e[0m", __FILE__,__func__, ##__VA_ARGS__)
|
|
|
|
#define printerr(FORMAT,...) fprintf(stderr, "\e[0;31m" LOGMSG "\e[0m" " " \
|
|
FORMAT "\e[0m", __FILE__,__func__, \
|
|
##__VA_ARGS__)
|
|
|
|
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
struct parameters_t
|
|
{
|
|
char *configDir;
|
|
char *userDir;
|
|
char *modelDir;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|