OPAL (Object Oriented Parallel Accelerator Library) 2024.2
OPAL
wfg.h
Go to the documentation of this file.
1#ifndef _WFG_H_
2#define _WFG_H_
3
4#include <stdio.h>
5#include <stdlib.h>
6#include <string.h>
7
8typedef double OBJECTIVE;
9
10typedef struct
11{
12 OBJECTIVE *objectives;
13 struct avl_node_t * tnode;
15
16typedef struct
17{
18 int nPoints;
19 int n;
20 POINT *points;
22
23typedef struct
24{
25 int nFronts;
26 FRONT *fronts;
28
29FILECONTENTS *readFile(const char[]);
30
31extern void printContents(FILECONTENTS *);
32
33#endif
double OBJECTIVE
Definition wfg.h:8
struct @233350253016034231211025074251103057371353063337 POINT
struct @234367073366376273310012072001174252033301274062 FRONT
void printContents(FILECONTENTS *)
Definition read.cpp:19
struct @013122157043262132051133341026143326361170267225 FILECONTENTS
FILECONTENTS * readFile(const char[])
Definition read.cpp:40