najaeda 0.1.24__cp313-cp313t-macosx_11_0_arm64.whl → 0.1.25__cp313-cp313t-macosx_11_0_arm64.whl

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.

Potentially problematic release.


This version of najaeda might be problematic. Click here for more details.

@@ -23,8 +23,7 @@ With **najaeda**, it is possible to:
23
23
  * **Prototype EDA Ideas Quickly**:
24
24
  * Use an intuitive API to experiment with new EDA concepts and workflows.
25
25
  * **Develop Custom EDA Tools**:
26
- * Build fast, tailored tools for solving specific challenges
27
- without relying on costly, proprietary EDA software.
26
+ * Build fast, tailored tools for solving specific challenges without relying on costly, proprietary EDA software.
28
27
 
29
28
  **najaeda** empowers developers to innovate, adapt, and accelerate
30
29
  their EDA processes with minimal overhead.
@@ -34,6 +33,15 @@ Information about the **najaeda** PyPI package is available at https://pypi.org/
34
33
  If you want more details about the underlying **naja** C++ library,
35
34
  please visit the **naja** GitHub repository at https://github.com/najaeda/naja .
36
35
 
36
+ Quick Start
37
+ ===========
38
+
39
+ To get started with **najaeda**, try out the interactive notebook in Google Colab:
40
+
41
+ .. image:: https://colab.research.google.com/assets/colab-badge.svg
42
+ :target: https://colab.research.google.com/github/najaeda/najaeda-tutorials/blob/main/notebooks/01_getting_started.ipynb
43
+ :alt: Open in Colab
44
+
37
45
  Installation
38
46
  ------------
39
47
  **najaeda** can be easily installed using pip:
najaeda/libnaja_bne.dylib CHANGED
Binary file
najaeda/libnaja_nl.dylib CHANGED
Binary file
najaeda/libnaja_opt.dylib CHANGED
Binary file
Binary file
najaeda/naja.so CHANGED
Binary file
najaeda/netlist.py CHANGED
@@ -12,6 +12,7 @@ import sys
12
12
  import os
13
13
  from enum import Enum
14
14
  from typing import Union, List
15
+ from dataclasses import dataclass
15
16
 
16
17
  from najaeda import naja
17
18
 
@@ -428,9 +429,11 @@ def get_snl_term_for_ids_with_path(path, termIDs):
428
429
 
429
430
 
430
431
  class Term:
431
- INPUT = naja.SNLTerm.Direction.Input
432
- OUTPUT = naja.SNLTerm.Direction.Output
433
- INOUT = naja.SNLTerm.Direction.InOut
432
+ class Direction(Enum):
433
+ """Enum for the direction of a term."""
434
+ INPUT = naja.SNLTerm.Direction.Input
435
+ OUTPUT = naja.SNLTerm.Direction.Output
436
+ INOUT = naja.SNLTerm.Direction.InOut
434
437
 
435
438
  def __init__(self, path, term):
436
439
  # self.termIDs = []
@@ -571,18 +574,18 @@ class Term:
571
574
  """
572
575
  return get_snl_term_for_ids(self.pathIDs, self.termIDs).getName()
573
576
 
574
- def get_direction(self) -> naja.SNLTerm.Direction:
577
+ def get_direction(self) -> Direction:
575
578
  """
576
579
  :return: the direction of the term.
577
- :rtype: naja.SNLTerm.Direction
580
+ :rtype: Term.Direction
578
581
  """
579
582
  snlterm = get_snl_term_for_ids(self.pathIDs, self.termIDs)
580
583
  if snlterm.getDirection() == naja.SNLTerm.Direction.Input:
581
- return Term.INPUT
584
+ return Term.Direction.INPUT
582
585
  elif snlterm.getDirection() == naja.SNLTerm.Direction.Output:
583
- return Term.OUTPUT
586
+ return Term.Direction.OUTPUT
584
587
  elif snlterm.getDirection() == naja.SNLTerm.Direction.InOut:
585
- return Term.INOUT
588
+ return Term.Direction.INOUT
586
589
 
587
590
  def __get_snl_bitnet(self, bit) -> Net:
588
591
  # single bit
@@ -646,6 +649,7 @@ class Term:
646
649
  """
647
650
  :return: the net of the term.
648
651
  :rtype: Net
652
+ :remark: If the term is a top level term, it will return None.
649
653
  """
650
654
  head_path = self.pathIDs.copy()
651
655
  if len(head_path) == 0:
@@ -975,17 +979,25 @@ class Instance:
975
979
  def dump_context_dot(self, path: str):
976
980
  self.__get_snl_model().dumpContextDotFile(path)
977
981
 
978
- def get_child_instance(self, name: str):
982
+ def get_child_instance(self, names: Union[str, list]):
979
983
  """
980
- :param str name: the name of the child Instance to get.
981
- :return: the child Instance with the given name or None if it does not exist.
984
+ :param names: the name of the child instance
985
+ or the path to the child Instance as a list of names.
986
+ :return: the child Instance at the given path or None if it does not exist.
982
987
  :rtype: Instance or None
983
988
  """
984
- childInst = self.__get_snl_model().getInstance(name)
985
- if childInst is None:
986
- return None
989
+ if isinstance(names, str):
990
+ names = [names]
991
+ if not names:
992
+ raise ValueError("Names argument cannot be empty")
993
+ model = self.__get_snl_model()
987
994
  path = self.pathIDs.copy()
988
- path.append(childInst.getID())
995
+ for name in names:
996
+ childInst = model.getInstance(name)
997
+ if childInst is None:
998
+ return None
999
+ path.append(childInst.getID())
1000
+ model = childInst.getModel()
989
1001
  return Instance(path)
990
1002
 
991
1003
  def get_child_instances(self):
@@ -1313,11 +1325,11 @@ class Instance:
1313
1325
  path = naja.SNLPath(path, newSNLInstance)
1314
1326
  return Instance(path)
1315
1327
 
1316
- def create_term(self, name: str, direction: naja.SNLTerm.Direction) -> Term:
1328
+ def create_term(self, name: str, direction: Term.Direction) -> Term:
1317
1329
  """Create a Term in this Instance with the given name and direction.
1318
1330
 
1319
1331
  :param str name: the name of the Term to create.
1320
- :param naja.SNLTerm.Direction direction: the direction of the Term to create.
1332
+ :param Term.Direction direction: the direction of the Term to create.
1321
1333
  :return: the created Term.
1322
1334
  """
1323
1335
  path = get_snl_path_from_id_list(self.pathIDs)
@@ -1325,7 +1337,7 @@ class Instance:
1325
1337
  naja.SNLUniquifier(path)
1326
1338
  path = get_snl_path_from_id_list(self.pathIDs)
1327
1339
  design = self.__get_snl_model()
1328
- newSNLTerm = naja.SNLScalarTerm.create(design, direction, name)
1340
+ newSNLTerm = naja.SNLScalarTerm.create(design, direction.value, name)
1329
1341
  return Term(path.getPathIDs(), newSNLTerm)
1330
1342
 
1331
1343
  def create_output_term(self, name: str) -> Term:
@@ -1335,7 +1347,7 @@ class Instance:
1335
1347
  :return: the created Term.
1336
1348
  :rtype: Term
1337
1349
  """
1338
- return self.create_term(name, naja.SNLTerm.Direction.Output)
1350
+ return self.create_term(name, Term.Direction.OUTPUT)
1339
1351
 
1340
1352
  def create_input_term(self, name: str) -> Term:
1341
1353
  """Create an input Term in this Instance with the given name.
@@ -1344,7 +1356,7 @@ class Instance:
1344
1356
  :return: the created Term.
1345
1357
  :rtype: Term
1346
1358
  """
1347
- return self.create_term(name, naja.SNLTerm.Direction.Input)
1359
+ return self.create_term(name, Term.Direction.INPUT)
1348
1360
 
1349
1361
  def create_inout_term(self, name: str) -> Term:
1350
1362
  """Create an inout Term in this Instance with the given name.
@@ -1353,22 +1365,22 @@ class Instance:
1353
1365
  :return: the created Term.
1354
1366
  :rtype: Term
1355
1367
  """
1356
- return self.create_term(name, naja.SNLTerm.Direction.InOut)
1368
+ return self.create_term(name, Term.Direction.INOUT)
1357
1369
 
1358
- def create_bus_term(self, name: str, msb: int, lsb: int, direction) -> Term:
1370
+ def create_bus_term(self, name: str, msb: int, lsb: int, direction: Term.Direction) -> Term:
1359
1371
  """Create a bus Term in this Instance with the given name, msb, lsb and direction.
1360
1372
 
1361
1373
  :param str name: the name of the Term to create.
1362
1374
  :param int msb: the most significant bit of the Term to create.
1363
1375
  :param int lsb: the least significant bit of the Term to create.
1364
- :param naja.SNLTerm.Direction direction: the direction of the Term to create.
1376
+ :param Term.Direction direction: the direction of the Term to create.
1365
1377
  :return: the created Term.
1366
1378
  """
1367
1379
  path = get_snl_path_from_id_list(self.pathIDs)
1368
1380
  if path.size() > 0:
1369
1381
  naja.SNLUniquifier(path)
1370
1382
  design = self.__get_snl_model()
1371
- newSNLTerm = naja.SNLBusTerm.create(design, direction, msb, lsb, name)
1383
+ newSNLTerm = naja.SNLBusTerm.create(design, direction.value, msb, lsb, name)
1372
1384
  return Term(self.pathIDs, newSNLTerm)
1373
1385
 
1374
1386
  def create_inout_bus_term(self, name: str, msb: int, lsb: int) -> Term:
@@ -1380,7 +1392,7 @@ class Instance:
1380
1392
  :return: the created Term.
1381
1393
  :rtype: Term
1382
1394
  """
1383
- return self.create_bus_term(name, msb, lsb, naja.SNLTerm.Direction.InOut)
1395
+ return self.create_bus_term(name, msb, lsb, Term.Direction.INOUT)
1384
1396
 
1385
1397
  def create_output_bus_term(self, name: str, msb: int, lsb: int) -> Term:
1386
1398
  """Create an output bus Term in this Instance with the given name, msb and lsb.
@@ -1391,7 +1403,7 @@ class Instance:
1391
1403
  :return: the created Term.
1392
1404
  :rtype: Term
1393
1405
  """
1394
- return self.create_bus_term(name, msb, lsb, naja.SNLTerm.Direction.Output)
1406
+ return self.create_bus_term(name, msb, lsb, Term.Direction.OUTPUT)
1395
1407
 
1396
1408
  def create_input_bus_term(self, name: str, msb: int, lsb: int) -> Term:
1397
1409
  """Create an input bus Term in this Instance with the given name, msb and lsb.
@@ -1402,7 +1414,7 @@ class Instance:
1402
1414
  :return: the created Term.
1403
1415
  :rtype: Term
1404
1416
  """
1405
- return self.create_bus_term(name, msb, lsb, naja.SNLTerm.Direction.Input)
1417
+ return self.create_bus_term(name, msb, lsb, Term.Direction.INPUT)
1406
1418
 
1407
1419
  def create_net(self, name: str) -> Net:
1408
1420
  """Create a scalar Net in this Instance with the given name.
@@ -1436,13 +1448,21 @@ class Instance:
1436
1448
  newSNLNet = naja.SNLBusNet.create(model, msb, lsb, name)
1437
1449
  return Net(path, newSNLNet)
1438
1450
 
1439
- def dump_verilog(self, path: str, name: str):
1451
+ def dump_verilog(self, path: str):
1440
1452
  """Dump the verilog of this instance.
1441
1453
 
1442
- :param str path: the path where to dump the verilog.
1443
- :param str name: the name of the verilog file.
1454
+ :param str path: the file path where to dump the verilog.
1455
+ :rtype: None
1456
+ :raises ValueError: if the path does not end with .v.
1457
+ :raises FileNotFoundError: if the directory of the path does not exist.
1444
1458
  """
1445
- self.__get_snl_model().dumpVerilog(path, name)
1459
+ # path should be a file path of the form "path/to/file.v"
1460
+ if not path.endswith(".v"):
1461
+ raise ValueError("The path must end with .v")
1462
+ dir_path = os.path.dirname(path) or "."
1463
+ if not os.path.exists(dir_path):
1464
+ raise FileNotFoundError(f"The directory {dir_path} does not exist")
1465
+ self.__get_snl_model().dumpVerilog(dir_path, os.path.basename(path))
1446
1466
 
1447
1467
  def get_truth_table(self):
1448
1468
  """
@@ -1461,6 +1481,15 @@ def __get_top_db() -> naja.NLDB:
1461
1481
  return naja.NLUniverse.get().getTopDB()
1462
1482
 
1463
1483
 
1484
+ def reset():
1485
+ """Reset the environment by deleting everything.
1486
+ :rtype: None
1487
+ """
1488
+ u = naja.NLUniverse.get()
1489
+ if u is not None:
1490
+ u.destroy()
1491
+
1492
+
1464
1493
  def get_top():
1465
1494
  """
1466
1495
  :return: the top Instance.
@@ -1485,9 +1514,10 @@ def create_top(name: str) -> Instance:
1485
1514
  return Instance()
1486
1515
 
1487
1516
 
1517
+ @dataclass
1488
1518
  class VerilogConfig:
1489
- def __init__(self, keep_assigns=True):
1490
- self.keep_assigns = keep_assigns
1519
+ keep_assigns: bool = True
1520
+ allow_unknown_designs: bool = False
1491
1521
 
1492
1522
 
1493
1523
  def load_verilog(files: Union[str, List[str]], config: VerilogConfig = None) -> Instance:
@@ -1496,6 +1526,8 @@ def load_verilog(files: Union[str, List[str]], config: VerilogConfig = None) ->
1496
1526
  :param files: a list of verilog files to load or a single file.
1497
1527
  :param config: the configuration to use when loading the files.
1498
1528
  :return: the top Instance.
1529
+ :rtype: Instance
1530
+ :raises Exception: if no files are provided.
1499
1531
  """
1500
1532
  if isinstance(files, str):
1501
1533
  files = [files]
@@ -1505,7 +1537,11 @@ def load_verilog(files: Union[str, List[str]], config: VerilogConfig = None) ->
1505
1537
  config = VerilogConfig() # Use default settings
1506
1538
  start_time = time.time()
1507
1539
  logging.info(f"Loading verilog: {', '.join(files)}")
1508
- __get_top_db().loadVerilog(files, keep_assigns=config.keep_assigns)
1540
+ __get_top_db().loadVerilog(
1541
+ files,
1542
+ keep_assigns=config.keep_assigns,
1543
+ allow_unknown_designs=config.allow_unknown_designs
1544
+ )
1509
1545
  execution_time = time.time() - start_time
1510
1546
  logging.info(f"Loading done in {execution_time:.2f} seconds")
1511
1547
  return get_top()
@@ -1515,6 +1551,8 @@ def load_liberty(files: Union[str, List[str]]):
1515
1551
  """Load liberty files.
1516
1552
 
1517
1553
  :param files: a list of liberty files to load or a single file.
1554
+ :rtype: None
1555
+ :raises Exception: if no liberty files are provided.
1518
1556
  """
1519
1557
  if isinstance(files, str):
1520
1558
  files = [files]
@@ -1531,6 +1569,9 @@ def load_primitives(name: str):
1531
1569
 
1532
1570
  - xilinx
1533
1571
  - yosys
1572
+ :param str name: the name of the primitives library to load.
1573
+ :raises ValueError: if the name is not recognized.
1574
+ :rtype: None
1534
1575
  """
1535
1576
  if name == "xilinx":
1536
1577
  from najaeda.primitives import xilinx
@@ -1590,14 +1631,18 @@ def get_model_name(id: tuple[int, int, int]) -> str:
1590
1631
 
1591
1632
 
1592
1633
  def apply_dle():
1593
- """Apply the DLE (Dead Logic Elimination) to the top design."""
1634
+ """Apply the DLE (Dead Logic Elimination) to the top design.
1635
+ :rtype: None
1636
+ """
1594
1637
  top = naja.NLUniverse.get().getTopDesign()
1595
1638
  if top is not None:
1596
1639
  naja.NLUniverse.get().applyDLE()
1597
1640
 
1598
1641
 
1599
1642
  def apply_constant_propagation():
1600
- """Apply constant propagation to the top design."""
1643
+ """Apply constant propagation to the top design.
1644
+ :rtype: None
1645
+ """
1601
1646
  top = naja.NLUniverse.get().getTopDesign()
1602
1647
  if top is not None:
1603
1648
  naja.NLUniverse.get().applyConstantPropagation()
najaeda/stats.py CHANGED
@@ -207,19 +207,19 @@ def compute_instance_stats(instance, instances_stats):
207
207
 
208
208
  def compute_instance_terms(instance, instance_stats):
209
209
  for term in instance.get_terms():
210
- if term.get_direction() == netlist.Term.INPUT:
210
+ if term.get_direction() == netlist.Term.Direction.INPUT:
211
211
  instance_stats.terms["inputs"] = instance_stats.terms.get("inputs", 0) + 1
212
212
  bit_terms = sum(1 for _ in term.get_bits())
213
213
  instance_stats.bit_terms["inputs"] = (
214
214
  instance_stats.bit_terms.get("inputs", 0) + bit_terms
215
215
  )
216
- elif term.get_direction() == netlist.Term.OUTPUT:
216
+ elif term.get_direction() == netlist.Term.Direction.OUTPUT:
217
217
  instance_stats.terms["outputs"] = instance_stats.terms.get("outputs", 0) + 1
218
218
  bit_terms = sum(1 for _ in term.get_bits())
219
219
  instance_stats.bit_terms["outputs"] = (
220
220
  instance_stats.bit_terms.get("outputs", 0) + bit_terms
221
221
  )
222
- elif term.get_direction() == netlist.Term.INOUT:
222
+ elif term.get_direction() == netlist.Term.Direction.INOUT:
223
223
  instance_stats.terms["inouts"] = instance_stats.terms.get("inouts", 0) + 1
224
224
  bit_terms = sum(1 for _ in term.get_bits())
225
225
  instance_stats.bit_terms["inouts"] = (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: najaeda
3
- Version: 0.1.24
3
+ Version: 0.1.25
4
4
  Summary: Naja EDA Python package
5
5
  Author-Email: Naja Authors <contact@keplertech.io>
6
6
  License: Apache License 2.0
@@ -19,16 +19,16 @@ Project-URL: Homepage, https://github.com/najaeda/naja
19
19
  Requires-Python: >=3.8
20
20
  Description-Content-Type: text/x-rst
21
21
 
22
- Naja EDA Python Package
22
+ najaeda Python Package
23
23
  =======================
24
24
 
25
- Naja EDA is a Python package that provides data structures and APIs for developing post-synthesis Electronic Design Automation (EDA) algorithms.
25
+ najaeda is a Python package that provides data structures and APIs for developing post-synthesis Electronic Design Automation (EDA) algorithms.
26
26
 
27
- Naja EDA provides a powerful yet simple framework designed to help software
27
+ najaeda provides a powerful yet simple framework designed to help software
28
28
  and hardware developers efficiently navigate and manipulate electronic
29
29
  design automation (EDA) workflows.
30
30
 
31
- With Naja EDA, you can:
31
+ With najaeda, you can:
32
32
 
33
33
  * Explore Netlists with Ease:
34
34
 
@@ -51,10 +51,10 @@ With Naja EDA, you can:
51
51
 
52
52
  * Build fast, tailored tools for solving specific challenges without relying on costly, proprietary EDA software.
53
53
 
54
- Naja EDA empowers developers to innovate, adapt, and accelerate their EDA
54
+ najaeda empowers developers to innovate, adapt, and accelerate their EDA
55
55
  processes with minimal overhead.
56
56
 
57
- Naja EDA is the Python counterpart of the `Naja C++ project <https://github.com/najaeda/naja>`_.
57
+ najaeda is the Python counterpart of the `Naja C++ project <https://github.com/najaeda/naja>`_.
58
58
 
59
59
  If you’re interested in this project, please consider starring it on GitHub.
60
60
  Feel free to reach out to us anytime at `contact@keplertech.io <mailto:contact@keplertech.io>`_.
@@ -68,6 +68,15 @@ Install Naja EDA using pip:
68
68
 
69
69
  pip install najaeda
70
70
 
71
+ Quick Start
72
+ -----------
73
+
74
+ To quickly explore what **najaeda** can do, launch the interactive tutorial notebook on Google Colab:
75
+
76
+ .. image:: https://colab.research.google.com/assets/colab-badge.svg
77
+ :target: https://colab.research.google.com/github/najaeda/najaeda-tutorials/blob/main/notebooks/01_getting_started.ipynb
78
+ :alt: Open in Colab
79
+
71
80
  Documentation
72
81
  -------------
73
82
 
@@ -1,19 +1,19 @@
1
- najaeda-0.1.24.dist-info/RECORD,,
2
- najaeda-0.1.24.dist-info/WHEEL,sha256=K65AJzICMUVN6ED5A5fm1lV1nZZqwk4MGF2oXTxJaVw,115
3
- najaeda-0.1.24.dist-info/METADATA,sha256=lDGwE7Obzgqwy7l70oK7xEsyYsisAYE1pQJwvbcUV_A,3046
4
- najaeda-0.1.24.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
- najaeda-0.1.24.dist-info/licenses/AUTHORS,sha256=7NYEGDAX_1QZvCCHfq8YVXC5ZbwH_pbNI8DcSmm70GU,377
6
- najaeda/netlist.py,sha256=ZFL00PMhc2pl_uu9_c3_lj65gSjD93zYvfbEFBLZhjg,54309
7
- najaeda/libnaja_nl.dylib,sha256=jORWEYW9nyFqhPabqspY2MnHdXNEPabSDQa4P9TYhpk,739824
1
+ najaeda-0.1.25.dist-info/RECORD,,
2
+ najaeda-0.1.25.dist-info/WHEEL,sha256=K65AJzICMUVN6ED5A5fm1lV1nZZqwk4MGF2oXTxJaVw,115
3
+ najaeda-0.1.25.dist-info/METADATA,sha256=gX37lYtMJ59BpS-CtFKG2bq5UCCubzjLNxC8-Xp6Ipk,3384
4
+ najaeda-0.1.25.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
+ najaeda-0.1.25.dist-info/licenses/AUTHORS,sha256=7NYEGDAX_1QZvCCHfq8YVXC5ZbwH_pbNI8DcSmm70GU,377
6
+ najaeda/netlist.py,sha256=2h7Tbl3IsCqGDdylWiVX5u-E3yoWAVi6kNb7sS7JqtA,55809
7
+ najaeda/libnaja_nl.dylib,sha256=5995NHdDOsc66W_7HN6dbyvBCqqY3l1u97f8CI4X7mo,738240
8
8
  najaeda/pandas_stats.py,sha256=yOb4ka965U7rN4D6AwvSGmRyeT_O7Ed-5cmT8BFbfeo,1070
9
9
  najaeda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- najaeda/naja.so,sha256=rGhZnt9hLvIYqlrbPuujMaQO662xjGYaffH0hfuqnHo,99440
10
+ najaeda/naja.so,sha256=DFFPgU5EOfyiK3j1azRi5l8M7GWtlEo09caPybr2zAM,99440
11
11
  najaeda/net_visitor.py,sha256=P_esjibYb-wBDuF-AyF7es9sJYw1Ha8RhTPu-qKe7G4,1940
12
- najaeda/libnaja_opt.dylib,sha256=5SAY5qqe7QALr2iZP8u8g3KN8Dn4qej9SrcL1hpE6iw,196416
13
- najaeda/libnaja_python.dylib,sha256=jAVOg8uYkm_wBeZin5AJgQI3W_dmpTL3uLc_1_JxfRY,925744
14
- najaeda/stats.py,sha256=wackXsf0x24ic9v-UifECHj4t5yveUWssMDZp2B057A,16187
12
+ najaeda/libnaja_opt.dylib,sha256=DueaGAzPtgYg5Xn3eVl6cvCMpY2oj_SZqF3uV2iBHb8,212720
13
+ najaeda/libnaja_python.dylib,sha256=r3WP4xrPu_GtfYYhedey2M5S2hXQCGsW0VltuHUFQ58,942752
14
+ najaeda/stats.py,sha256=SJ9rca0Z6ldNAFOjU7DPO2hfx1zq-9Bec0Rx_oLasJo,16217
15
15
  najaeda/instance_visitor.py,sha256=JMsPSQaWNiDjxS05rxg83a0PIsrOIuTi9G35hkwdibs,1530
16
- najaeda/libnaja_bne.dylib,sha256=4lVFVXUHKBvqhK5bRnk4HEPvPqnrfH3q0mTtoB2FccY,136624
16
+ najaeda/libnaja_bne.dylib,sha256=pLbGUnDr5PSGXbA8wKD-pqEyQIWHbiCb1icPpxRYrWE,136416
17
17
  najaeda/libnaja_dnl.dylib,sha256=zWsiT-RPDJz9koiDDUHqGNFzSFz7x2SmlIo5PTLkTUs,145936
18
18
  najaeda/native/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  najaeda/native/stats.py,sha256=t50hhE9pEFNtlssjES0A-K9TsO_2ZSUAb-e9L3Rt6yc,13063
@@ -30,7 +30,7 @@ najaeda/docs/source/examples.rst.in,sha256=4ZStOA3N5VHbKZgdn2kaEQZL7wPoJwODS2E1B
30
30
  najaeda/docs/source/common_classes.rst,sha256=o20u3mcpFYINwy0sVdye90ZPMQcPqoH3V4ERKcG7SZI,181
31
31
  najaeda/docs/source/equipotential.rst,sha256=0MDi-4fPEsX7K_ezWj5DB3mCalnhqN-sicYbQKYQfNc,335
32
32
  najaeda/docs/source/netlist_classes.rst,sha256=Zrha9MQVEdEwxmP2zhgC0K3iioZXXerzeFoOz5SrOXM,132
33
- najaeda/docs/source/introduction.rst,sha256=kE4qxEJCgcAswiT3rIJS21oBYIMg1cyT_rKmOzQgvsI,2095
33
+ najaeda/docs/source/introduction.rst,sha256=nvxL5OQ-SeVWuTF6CY93iPt7S5ReXvqk5D9bW36CUUs,2416
34
34
  najaeda/docs/source/api.rst,sha256=47VCPyF4Py_1cklZ3q9fmOMhqqI17rxwU_VUJETfCwY,151
35
35
  najaeda/.dylibs/libcapnp-1.1.0.dylib,sha256=l9SvRdxPrCI2mB_UitO7QjsaC7I5mq2R3rZjoIQKEYI,709328
36
36
  najaeda/.dylibs/libtbbmalloc.2.15.dylib,sha256=ORLa9YDlOcMwtcYPZoVnNTTbBpL4lHwYcfA3YCJm_xA,126688