Skip to content

Commit ae19f82

Browse files
committed
renamed module to LPmade
1 parent 0071689 commit ae19f82

File tree

5 files changed

+13
-108
lines changed

5 files changed

+13
-108
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build/
2-
netlib.py
3-
netlib_wrap.cpp
2+
LPmade.py
3+
LPmade_wrap.cpp
44
__pycache__
55
*.pyc
66
.DS_Store

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Or:
1919
The API is largely identical to the C++ library, with a few useful additions. For example:
2020

2121
```
22-
from netlib import *
22+
from LPmade import *
2323
2424
#Load network from disk
2525
network = WeightedNetwork.readNetworkNamed("COMPLETE.net")

netlib.i

-97
This file was deleted.

netlib/LinkPredictor/LinkPredictor.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LPmade is free software: you can redistribute it and/or modify it under the term
1212
#include <limits>
1313
#include "LinkPredictor.h"
1414
#include <math.h>
15+
#include <tuple>
1516

1617
using std::numeric_limits;
1718
using std::cout;
@@ -24,6 +25,7 @@ double zScore(double value,double standard_deviation,double mean) {
2425
}
2526

2627
LinkPredictor::LinkPredictor( const WeightedNetwork& network, const WeightedNetwork& completeNetwork ) : network(network), completeNetwork(completeNetwork), vertex(INVALID_VERTEX), neighbor(INVALID_VERTEX) {
28+
srand(time(0));
2729
}
2830

2931
LinkPredictor::~LinkPredictor() {
@@ -89,15 +91,15 @@ std::vector<double> LinkPredictor::allNormalised(unsigned int vertex) {
8991
}
9092

9193
std::vector<vertex_t> LinkPredictor::topNVertices(unsigned int vertex, int n) {
92-
std::priority_queue< std::pair<double, int> , vector< std::pair<double, int> >, PairCompare > q;
94+
std::priority_queue< std::tuple<double, int ,int> > q;
9395
for (unsigned int i = 0; i < this->network.vertexCount(); ++i) {
94-
q.push(std::pair<double, int>( generateScoreIfNotNeighborsInt(vertex,i) , i));
96+
q.push(std::make_tuple(generateScoreIfNotNeighborsInt(vertex,i) , rand(), i) );
9597
}
9698

9799
std::vector<vertex_t> topVertices;
98100

99101
for (int i = 0; i < n; ++i) {
100-
topVertices.push_back(q.top().second);
102+
topVertices.push_back(std::get<2>(q.top()));
101103
q.pop();
102104
}
103105

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
flag for flag in opt.split() if flag != '-Wstrict-prototypes'
1212
)
1313

14-
net_lib_module = Extension('_netlib',
15-
sources=['netlib.i',
14+
net_lib_module = Extension('_LPmade',
15+
sources=['LPmade.i',
1616
"netlib/WeightedNetwork.cpp",
1717
"netlib/Statistics.cpp",
1818
"netlib/LinkPredictor/LinkPredictor.cpp",
@@ -54,10 +54,10 @@
5454
extra_compile_args=["-std=c++0x"],
5555
)
5656

57-
setup (name = 'netlib',
57+
setup (name = ' LPmade',
5858
version = '0.1',
5959
author = "James Treanor",
60-
description = """netlib wrapper""",
60+
description = """LPmade wrapper""",
6161
ext_modules = [net_lib_module],
62-
py_modules = ["netlib"],
62+
py_modules = ["LPmade"],
6363
)

0 commit comments

Comments
 (0)