algorithm with no double nodes and nearly efficient enough still some optimizations to find for --big-superposition maps
21 lines
1014 B
C
21 lines
1014 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* lm_initdata.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/03/23 17:43:34 by tmaze #+# #+# */
|
|
/* Updated: 2019/04/08 18:26:13 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "lem_in.h"
|
|
|
|
void lm_initdata(t_lmdata *data)
|
|
{
|
|
data->nbants = 0;
|
|
data->nodes_data = NULL;
|
|
data->adj = NULL;
|
|
}
|