graph-analysis
Here are 102 public repositories matching this topic...
Description
Currently our unit tests are disorganized and each test creates example StellarGraph graphs in different or similar ways with no sharing of this code.
This issue is to improve the unit tests by making functions to create example graphs available to all unit tests by, for example, making them pytest fixtures at the top level of the tests (see https://docs.pytest.org/en/latest/
-
Updated
Feb 5, 2022 - Cuda
-
Updated
Jan 26, 2022 - TypeScript
-
Updated
Feb 5, 2022 - C++
-
Updated
Feb 3, 2022 - Python
-
Updated
Jan 26, 2022 - Python
CASE doesn't work well with null. This works as expected and prints 'works':
WITH 2 AS name
RETURN CASE name
WHEN 2 THEN 'works'
WHEN null THEN "doesn't work"
ELSE 'something went wrong'
END
If we swap the first case from 2 to 3. It should print 'something went wrong', but instead it prints "doesn't work":
WITH 2 AS name
RETURN CASE name
WHEN 3 THEN 'works'
There is a proof-of-concept github action using https://github.com/ReactiveCircus/android-emulator-runner in branch https://github.com/BrightID/BrightID/tree/automate_detox
It kind of runs, but not usable/reliable.
Things to try:
- Make detox test a release build of the app so we don't need to have metro running in parallel
- Use iOS simulator instead of android emulator
- Fork the android
-
Updated
Feb 2, 2021 - C++
-
Updated
Jun 29, 2021 - Python
-
Updated
Sep 12, 2021 - C++
-
Updated
Jan 4, 2021 - JavaScript
-
Updated
Feb 4, 2022 - Python
"Const" code review
-
Updated
Jan 16, 2020 - HTML
-
Updated
Jan 24, 2022 - Python
-
Updated
Jun 27, 2021 - Python
-
Updated
Nov 24, 2021 - Python
-
Updated
Nov 18, 2021 - Python
-
Updated
Jan 24, 2021 - Python
-
Updated
Feb 5, 2022 - Python
-
Updated
Dec 9, 2021 - Python
-
Updated
Nov 15, 2017 - Python
-
Updated
Nov 10, 2020 - Python
-
Updated
Jun 12, 2021 - C++
-
Updated
Jan 24, 2022 - Julia
-
Updated
May 14, 2021 - HTML
Improve this page
Add a description, image, and links to the graph-analysis topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the graph-analysis topic, visit your repo's landing page and select "manage topics."
When using
networkx.readwrite.json_graph.tree_datato returns data in tree format that is suitable for JSON serialization and then convert this data back usingnetworkx.readwrite.json_graph.tree_graph, you lose the Graph attributes.Current Behaviour
For example the following is the current behaviour
>>