INGOR
Loading...
Searching...
No Matches
ytCompleteGraphSL.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_SL_H
9#define __YTLIB_COMPLETE_GRAPH_SL_H
10#include "ytGraph.h"
11typedef struct {
12 ytGraph super;
13 int p;
15ytCompleteGraphSL * ytCompleteGraphSL_new(int nodes);
16ytGraph * ytCompleteGraphSL_Graph(ytCompleteGraphSL * this);
17#endif /* __YTLIB_COMPLETE_GRAPH_SL_H */
Interface class for handling graph structure.
Complete graph.
Definition ytCompleteGraphSL.h:11