Skip to content
Snippets Groups Projects
Commit 1b96451e authored by felix's avatar felix
Browse files

update unit tests and version

parent c7cccbb9
No related branches found
No related tags found
No related merge requests found
......@@ -85,13 +85,13 @@ def test_circuit_dual():
print('test from catenation')
for k, constr in circuitConstructor.items():
K = kcd.initialize_dual_from_catenation(k, 'catenation', 3)
K = kcd.initialize_dual_from_catenation('catenation', 3, k)
print(K.layer)
print('test from minsurf')
for k, constr in circuitConstructor.items():
K = kcd.initialize_dual_from_minsurf(k, 'simple', 3)
K = kcd.initialize_dual_from_minsurf('simple', 3, k)
print(K.layer)
def test_grid_dual():
......
......@@ -13,7 +13,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup(
name="kirchhoff",
version="0.2.5",
version="0.2.6",
author="felixk1990",
author_email="felixuwekramer@protonmail.com",
description="Collection of routines for creation and manipulation of Kirchhoff circuits based on resistor-only networks, together with 2D/3D spatial embeddings. ",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment