natural-agi-common 0.1.32__tar.gz → 0.1.33__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.
Files changed (35) hide show
  1. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/PKG-INFO +1 -1
  2. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/graph_traversal.py +2 -0
  3. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/natural_agi_common.egg-info/PKG-INFO +1 -1
  4. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/setup.py +1 -1
  5. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/README.md +0 -0
  6. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/__init__.py +0 -0
  7. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/critical_graph_utils.py +0 -0
  8. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/critical_point.py +0 -0
  9. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/decorator.py +0 -0
  10. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/graph_utils.py +0 -0
  11. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/__init__.py +0 -0
  12. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/dlq.py +0 -0
  13. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/enums.py +0 -0
  14. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/half_plane.py +0 -0
  15. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/length_comparison_result.py +0 -0
  16. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/point.py +0 -0
  17. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/model/vector.py +0 -0
  18. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/params.py +0 -0
  19. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/__init__.py +0 -0
  20. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/start_point_selector.py +0 -0
  21. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/__init__.py +0 -0
  22. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/angle_visitor.py +0 -0
  23. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/direction_visitor.py +0 -0
  24. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/half_plane_visitor.py +0 -0
  25. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/length_comparison_visitor.py +0 -0
  26. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/quadrant_visitor.py +0 -0
  27. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/relative_position_visitor.py +0 -0
  28. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/visitor.py +0 -0
  29. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/common/traversal/visitors/visitor_result_persistence_service.py +0 -0
  30. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/natural_agi_common.egg-info/SOURCES.txt +0 -0
  31. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/natural_agi_common.egg-info/dependency_links.txt +0 -0
  32. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/natural_agi_common.egg-info/requires.txt +0 -0
  33. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/natural_agi_common.egg-info/top_level.txt +0 -0
  34. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/pyproject.toml +0 -0
  35. {natural_agi_common-0.1.32 → natural_agi_common-0.1.33}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: natural-agi-common
3
- Version: 0.1.32
3
+ Version: 0.1.33
4
4
  Requires-Dist: pydantic
5
5
  Requires-Dist: networkx
6
6
  Requires-Dist: neo4j
@@ -15,8 +15,10 @@ class GraphTraversal:
15
15
  ) -> Generator[Tuple[Point, Optional[Vector]], None, None]:
16
16
  visited_vector = set()
17
17
  for edge in nx.dfs_edges(self.graph, start_node):
18
+ self.logger.info(f"Visiting edge: {edge}")
18
19
  source_node, target_node = edge
19
20
  if source_node in visited_vector or target_node in visited_vector:
21
+ self.logger.info(f"Skipping edge: {edge} because vector was already visited")
20
22
  continue
21
23
 
22
24
  # Convert to your Point and Vector objects
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: natural-agi-common
3
- Version: 0.1.32
3
+ Version: 0.1.33
4
4
  Requires-Dist: pydantic
5
5
  Requires-Dist: networkx
6
6
  Requires-Dist: neo4j
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="natural-agi-common",
5
- version="0.1.32",
5
+ version="0.1.33",
6
6
  packages=find_packages(include=["common", "common.*"]),
7
7
  install_requires=["pydantic", "networkx", "neo4j"],
8
8
  )