-
Notifications
You must be signed in to change notification settings - Fork 9
/
example_infomoney.py
29 lines (25 loc) · 1.09 KB
/
example_infomoney.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
__author__ = 'lisette.espin'
#######################################################################
# References
# - http://www.albany.edu/faculty/kretheme/PAD637/ClassNotes/Spring%202013/Lab8.pdf
#######################################################################
#######################################################################
# Dependencies
#######################################################################
import numpy as np
from libs import utils
from libs.qap import QAP
#######################################################################
# Data
# Source: http://vlado.fmf.uni-lj.si/pub/networks/data/ucinet/ucidata.htm
#######################################################################
minfo = minfo = np.loadtxt('data/info.dat')
mmoney = np.loadtxt('data/money.dat')
utils.printf('Information: \n{}'.format(minfo))
utils.printf('Money Exchange: \n{}'.format(mmoney))
#######################################################################
# QAP
#######################################################################
qap = QAP(minfo, mmoney, 5000)
qap.qap()
qap.summary()