undirectedclique.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 __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 + =
减小字号Ctrl + -
显示快捷键?