|
@@ -5,9 +5,13 @@ import requests |
|
|
import json |
|
|
import json |
|
|
import abp |
|
|
import abp |
|
|
|
|
|
|
|
|
|
|
|
#URL = "http://localhost:5000" |
|
|
|
|
|
URL = "https://abv.peteshadbolt.co.uk/" |
|
|
|
|
|
|
|
|
def test_graph(): |
|
|
def test_graph(): |
|
|
N = 100 |
|
|
N = 100 |
|
|
g = abp.NXGraphState(range(N), vop="hadamard") |
|
|
|
|
|
|
|
|
g = abp.NXGraphState(range(N)) |
|
|
|
|
|
|
|
|
for i in range(N-1): |
|
|
for i in range(N-1): |
|
|
g.act_cz(i, i+1) |
|
|
g.act_cz(i, i+1) |
|
|
g.layout() |
|
|
g.layout() |
|
@@ -15,6 +19,6 @@ def test_graph(): |
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
if __name__ == '__main__': |
|
|
data = json.dumps(test_graph().to_json(stringify=False)) |
|
|
data = json.dumps(test_graph().to_json(stringify=False)) |
|
|
r = requests.post("http://localhost:5000/graph", data=data) |
|
|
|
|
|
|
|
|
r = requests.post("{}/graph".format(URL), data=data) |
|
|
print r.status_code, r.content |
|
|
print r.status_code, r.content |
|
|
|
|
|
|