INGOR
Loading...
Searching...
No Matches
ytMapGraph.h
1/*
2 math/ytMapGraph.{h,c} : Mapping Wrapper Graph
3 Copyright (C) 2018, Yoshinori Tamada <tamada A T ytlab.jp>
4 All rights reserved.
5
6 See LICENSE.txt for details of the licensing agreement.
7*/
8
9#ifndef __YTLIB_MAP_GRAPH_H
10#define __YTLIB_MAP_GRAPH_H
11
12#include "ytGraph.h"
13
14typedef struct {
15#ifdef DOXY
16private:
17#endif
18 ytGraph super;
19 ytGraph * g;
20 int * map;
21 int p;
23
24ytMapGraph * ytMapGraph_new(ytGraph * g);
25int * ytMapGraph_setMap(ytMapGraph * this, int * map, int size);
26
27#endif /* __YTLIB_MAP_GRAPH_H */
Interface class for handling graph structure.
Mapping wrapper of a ytGraph instance.
Definition ytMapGraph.h:14