📄 directedclique.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -