⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 undirectedclique.h

📁 利用C
💻 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 + -