chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "../common/common.h"
|
||||
|
||||
struct CSRGraph {
|
||||
std::vector<int> V;
|
||||
std::vector<int> E;
|
||||
std::vector<double> unweighted_W;
|
||||
std::unordered_map<std::string, std::shared_ptr<std::vector<double>>> W_map;
|
||||
|
||||
std::vector<node_t> nodes;
|
||||
std::unordered_map<node_t, int> node2idx;
|
||||
};
|
||||
Reference in New Issue
Block a user