-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial working multigraph edge validator plus tests (#107)
* Add initial working model of multigraph edge validator plus tests * Add example test where multigraph ANY fails * Add temporary documentation while we improve support * Add basic multigraph tests * Working multigraph "ANY" support * Add failure check in unit tests * Update formatting in grandiso executor * Remove dotmotif.dotmotif deprecated API * Remove dotmotif.dotmotif from tests * Update documentation * Update multigraph documentation * fix dangling dotmotif.dotmotif reference
- Loading branch information
Showing
26 changed files
with
468 additions
and
205 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
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 |
---|---|---|
@@ -1,8 +1,23 @@ | ||
## *Class* `GrandIsoExecutor(NetworkXExecutor)` | ||
|
||
|
||
A DotMotif executor that uses grandiso for subgraph monomorphism. | ||
|
||
This executor is dramatically fast than the NetworkX search, and is still a pure-Python implementation. | ||
|
||
[GrandIso](https://github.com/aplbrain/grandiso-networkx) | ||
|
||
|
||
|
||
## *Function* `find(self, motif, limit: int = None)` | ||
|
||
|
||
Find a motif in a larger graph. | ||
|
||
### Arguments | ||
motif (dotmotif.dotmotif) | ||
motif (dotmotif.Motif) | ||
> - **int** (`None`: `None`): None) | ||
### Returns | ||
List[dict] | ||
|
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
Empty file.
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
Oops, something went wrong.