1 Star 0 Fork 0

OpenROAD-mirror/PD-Rev

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
graph.h 7.76 KB
一键复制 编辑 原始数据 按行查看 历史
///////////////////////////////////////////////////////////////////////////////
// BSD 3-Clause License
//
// Copyright (c) 2018, The Regents of the University of California
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
///////////////////////////////////////////////////////////////////////////////
/**************************************************************************
* Copyright(c) 2018 Regents of the University of California
* Kwangsoo Han, Andrew B. Kahng and Sriram Venkatesh
* Contact kwhan@ucsd.edu, abk@cs.ucsd.edu, srvenkat@ucsd.edu
* Affiliation: Computer Science and Engineering Department, UC San Diego,
* La Jolla, CA 92093-0404, USA
*
*************************************************************************/
/**************************************************************************
* UCSD Prim-Dijkstra Revisited
* graph.h
*************************************************************************/
#ifndef GRAPH_H
#define GRAPH_H
using namespace std;
#include <vector>
#include "node.h"
#include "edge.h"
class Graph {
public:
vector<Node> nodes;
vector<Edge> edges;
vector<int> dag;
int maxPL; // max source to sink pathlength
float maxPLRatio;
vector < vector <int> > ManhDist;
float PLmargin;
unsigned verbose;
unsigned num_terminals;
unsigned orig_num_terminals;
unsigned root_idx;
float alpha1;
unsigned seed;
float alpha2;
float alpha3;
float alpha4;
float beta;
unsigned distance;
float M;
float pd_wl;
float pd_pl;
float mst_wl;
float spt_pl;
float pd_dc;
float pdbu_wl;
float pdbu_pl;
float pdbu_dc;
float st_wl;
float st_pl;
float st_dc;
float daf_wl;
float daf_pl;
float daf_dc;
vector <int> urux;
vector <int> urlx;
vector <int> ulux;
vector <int> ullx;
vector <int> lrux;
vector <int> lrlx;
vector <int> llux;
vector <int> lllx;
vector<Node> sheared;
vector<Node> hanan;
vector < vector<int> > nn;
float avgNN;
vector < vector<int> > nn_hanan;
vector <int> sorted;
vector <int> sorted_hanan;
vector <int> aux;
vector <unsigned> heap_key;
vector <int> heap_idx;
vector <int> heap_elt;
unsigned heap_size;
vector < vector<int> > tree_struct;
vector<int> tree_struct_1darr;
// functions
Graph() {};
Graph(unsigned _num_terminals, unsigned _verbose, float _alpha1, float _alpha2,
float _alpha3, float _alpha4, unsigned _root, float _beta, float _margin,
unsigned seed, unsigned distance, vector<unsigned>& x, vector<unsigned>& y);
~Graph();
bool buildNearestNeighborsForSPT(unsigned num_terminals);
bool buildNearestNeighbors_single_node(unsigned num_terminals, unsigned idx);
bool run_PD_brute_force(float alp);
bool doSteiner_HoVW();
bool fix_max_dc();
bool find_max_dc_node(vector<float>& node_and_dc);
unsigned calc_overlap(vector < vector<Node> > &set_of_nodes);
unsigned calc_ov_x_or_y(vector<Node>& sorted, Node curr_node, const char *tag);
bool get_overlap_lshape(vector<Node>& set_of_nodes, int index);
void generate_permutations(vector < vector<unsigned> > lists, vector < vector<unsigned> > &result, unsigned depth, vector<unsigned> current);
void update_edgecosts_to_parent(unsigned child, unsigned par);
void update_node_detcost_Kt(unsigned j);
void get_level_in_tree();
void PDBU_new_NN();
void update_detourcosts_to_NNs(unsigned j);
void swap_and_update_tree(unsigned min_node,int nn_idx, unsigned distance, unsigned i_node);
float calc_tree_cost();
void heap_insert(int p, unsigned key);
unsigned heap_delete_min();
void heap_decrease_key (int p, float new_key);
void get_children_of_node();
void print_tree();
void print_tree_v2(ofstream &ofs);
float calc_tree_det_cost();
unsigned calc_tree_wl_pd();
unsigned calc_tree_pl();
void updateMinDist();
void NESW_NearestNeighbors(int left, int right, unsigned oct);
void NESW_Combine(int left, int mid, int right, unsigned oct);
bool make_unique (vector<Node>& vec);
void BuildDAG();
void UpdateManhDist();
bool IsSubTree(int cIdx, int tIdx);
void UpdateMaxPLToChild(int cIdx);
void PrintInfo();
void refineSteiner();
void refineSteiner2();
void UpdateSteinerNodes();
void GetSteinerNodes(int idx, vector<Node> &fSTNodes);
void GetSteiner(int cIdx, int nIdx, vector<Node>& STNodes);
bool IsParent(int cIdx, int nIdx);
bool IsOnEdge(Node &tNode, int idx);
Node GetCornerNode(int cIdx);
void DupRemoval(vector <Node>& STNodes);
void removeChild(Node &pNode, int idx);
void addChild(Node &pNode, int idx);
void UpdateEdges(vector<Node> &STNodes);
void UpdateAllEdgesNSEW();
void UpdateNSEW(Edge& e);
int IdentLoc(int cIdx, int tIdx);
void SortAll(Node &n);
void SortN(Node &n);
void SortS(Node &n);
void SortE(Node &n);
void SortW(Node &n);
int DeltaN(int idx, int rIdx, bool isRemove);
int DeltaS(int idx, int rIdx, bool isRemove);
int DeltaE(int idx, int rIdx, bool isRemove);
int DeltaW(int idx, int rIdx, bool isRemove);
int ComputeWL(int cIdx, int pIdx, bool isRemove, int eShape);
void AddNode(int cIdx, int pIdx, int eShape);
void SortCNodes(vector<Node> &cNodes, int cIdx, int pIdx, int eShape);
void constructSteiner();
int IsAdded(Node &cN);
void FreeManhDist();
void removeNeighbor(int pIdx, int cIdx);
void removeN(Node &pN, int idx);
void removeS(Node &pN, int idx);
void removeE(Node &pN, int idx);
void removeW(Node &pN, int idx);
void replaceChild(Node &pNode, int idx, int tIdx);
void replaceParent(Node &pNode, int idx, int tIdx);
void RemoveUnneceSTNodes();
bool IsSameDir(int cIdx, int nIdx);
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OpenROAD-mirror/PD-Rev.git
git@gitee.com:OpenROAD-mirror/PD-Rev.git
OpenROAD-mirror
PD-Rev
PD-Rev
master

搜索帮助