This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite core (Graph, GraphInterface, Node, Link) in C++. * Basic Graph infra in C++ * Split cpp files; Parallel compile; GIF & Node functions * LinkPointer * add LinkDirectConditional * use GraphFunctions * pickerbug: first lcsc attach, then descriptive props * Remove networkx, cmake glob * pint 3.13 fix * Cherry picked features from lazy mifs - timeout for basic tests - linkconditional failure enum - node root id - extra util: typename, consume, DefaultFactoryDict, ConfigFlagInt - better erc for shorted power rails - TBD resolve before eq - remove mif.get_direct_connections - parameter merge speedup (check is) - parameter add is_dynamic trait (no impl yet) - add multi connect - make parent name optional - add linkdirectderived stub - add is-uplink, is-downlink to gif - remove poetry.lock
- Loading branch information
1 parent
6827e7d
commit 9c4af44
Showing
133 changed files
with
3,092 additions
and
3,351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,3 +99,5 @@ _local | |
|
||
# OS stuff | ||
.DS_Store | ||
|
||
.envrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file is part of the faebryk project | ||
# SPDX-License-Identifier: MIT | ||
|
||
|
||
import logging | ||
|
||
logger = logging.getLogger(__name__) |
Oops, something went wrong.