INGOR
Loading...
Searching...
No Matches
ytCompleteGraph.h
1/*
2 math/ytCompleteGraph.{h,c} : Complete 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#ifndef __YTLIB_COMPLETE_GRAPH_H
9#define __YTLIB_COMPLETE_GRAPH_H
10#include "ytGraph.h"
11typedef struct {
12 ytGraph super;
13 int p;
15ytCompleteGraph * ytCompleteGraph_new(int nodes);
16ytGraph * ytCompleteGraph_Graph(ytCompleteGraph * this);
17#endif /* __YTLIB_COMPLETE_GRAPH_H */
Interface class for handling graph structure.
Complete graph.
Definition ytCompleteGraph.h:11