INGOR
Loading...
Searching...
No Matches
math
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
14
typedef
struct
{
15
#ifdef DOXY
16
private
:
17
#endif
18
ytGraph
super;
19
ytGraph
* g;
20
int
* map;
21
int
p;
22
}
ytMapGraph
;
23
24
ytMapGraph
* ytMapGraph_new(
ytGraph
* g);
25
int
* ytMapGraph_setMap(
ytMapGraph
*
this
,
int
* map,
int
size);
26
27
#endif
/* __YTLIB_MAP_GRAPH_H */
ytGraph
Interface class for handling graph structure.
ytMapGraph
Mapping wrapper of a ytGraph instance.
Definition
ytMapGraph.h:14
Generated by
1.9.8