📄 undirectedclique.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 __UNDIRECTED_CLIQUE_H#define __UNDIRECTED_CLIQUE_H#include "Graph.h"namespace dolfin{ /// A undirected 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) / 2 class UndirectedClique : public Graph { public: UndirectedClique(uint num_vertices); }; }#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -