directedclique.h
来自「利用C」· C头文件 代码 · 共 29 行
H
29 行
// Copyright (C) 2007 Magnus Vikstrom// Licensed under the GNU LGPL Version 2.1.//// First added: 2007-03-19// Last changed: 2007-03-19#ifndef __DIRECTED_CLIQUE_H#define __DIRECTED_CLIQUE_H#include "Graph.h"namespace dolfin{ /// A directed graph where all vertices are adjacent to each other. /// The number of vertices is given by num_vertices >= 1. The number of /// edges is given by (num_vertices - 1) * num_vertices) class DirectedClique : public Graph { public: DirectedClique(uint num_vertices); }; }#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?