QWnet 2.0.1__tar.gz → 2.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: QWnet
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: A unified Quantum Walk simulation package
5
5
  Project-URL: Homepage, https://example.com/QWnet
6
6
  Requires-Python: >=3.8
@@ -30,9 +30,9 @@ qw.run_simulation('2d', steps=50)
30
30
  qw.run_simulation('3d', steps=20)
31
31
 
32
32
  # Graph Walks
33
- qw.run_simulation('ranking', file_path='graph.edgelist')
34
- qw.run_simulation('pagerank')
35
- qw.run_simulation('hadamard')
36
- qw.run_simulation('szegedy')
37
- qw.run_simulation('community')
33
+ qw.run_simulation('ChawlaQW', file_path='graph.edgelist', steps=100)
34
+ qw.run_simulation('QPageRank', steps=20, alpha=0.85)
35
+ qw.run_simulation('HadamardQW', steps=100, top_p=0.05)
36
+ qw.run_simulation('SzegedyQW', steps=10)
37
+ qw.run_simulation('directSumQW', initial_state='uniform', coin_type='fourier')
38
38
  ```
@@ -19,9 +19,9 @@ qw.run_simulation('2d', steps=50)
19
19
  qw.run_simulation('3d', steps=20)
20
20
 
21
21
  # Graph Walks
22
- qw.run_simulation('ranking', file_path='graph.edgelist')
23
- qw.run_simulation('pagerank')
24
- qw.run_simulation('hadamard')
25
- qw.run_simulation('szegedy')
26
- qw.run_simulation('community')
27
- ```
22
+ qw.run_simulation('ChawlaQW', file_path='graph.edgelist', steps=100)
23
+ qw.run_simulation('QPageRank', steps=20, alpha=0.85)
24
+ qw.run_simulation('HadamardQW', steps=100, top_p=0.05)
25
+ qw.run_simulation('SzegedyQW', steps=10)
26
+ qw.run_simulation('directSumQW', initial_state='uniform', coin_type='fourier')
27
+ ```
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "QWnet"
7
- version = "2.0.1"
7
+ version = "2.0.2"
8
8
  description = "A unified Quantum Walk simulation package"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: QWnet
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: A unified Quantum Walk simulation package
5
5
  Project-URL: Homepage, https://example.com/QWnet
6
6
  Requires-Python: >=3.8
@@ -30,9 +30,9 @@ qw.run_simulation('2d', steps=50)
30
30
  qw.run_simulation('3d', steps=20)
31
31
 
32
32
  # Graph Walks
33
- qw.run_simulation('ranking', file_path='graph.edgelist')
34
- qw.run_simulation('pagerank')
35
- qw.run_simulation('hadamard')
36
- qw.run_simulation('szegedy')
37
- qw.run_simulation('community')
33
+ qw.run_simulation('ChawlaQW', file_path='graph.edgelist', steps=100)
34
+ qw.run_simulation('QPageRank', steps=20, alpha=0.85)
35
+ qw.run_simulation('HadamardQW', steps=100, top_p=0.05)
36
+ qw.run_simulation('SzegedyQW', steps=10)
37
+ qw.run_simulation('directSumQW', initial_state='uniform', coin_type='fourier')
38
38
  ```
File without changes
File without changes
File without changes
File without changes