-
This is probably a crazy idea (and I don't currently have a use case), but could we make it easy to apply a dict to map values? For example, to make the following easier and more reliable (i.e., not …
-
_**Edit:** note that `to_values` is deprecated; use `to_coo` instead_
We have found that we sometimes perform `to_values()` followed by `from_values()` to perform different operations such as creat…
-
I noticed that when converting an _**undirected**_ and unweighted graph from NetworkX, each self loop is represented by 1 (and not 2) on the diagonal. Example:
```
g = nx.Graph([(0,1), (1,1)])
gb…
-
[backedarray](https://github.com/lilab-bcb/backedarray) supports backed sparse csr and csc matrices in zarr and hdf5 formats. Happy to discuss. Thanks.
-
Very impressive library so far. Just wanted to mention here, unless I'm misreading your API docs, that the Graph object doesn't have an implementation of Prim's or Kruskal's minimum/maximum spanning t…
-
Hello! I ran into a problem: when I want to multiply matrices of a large enough size, `OutOfMemory` is thrown with the following traceback:
```bash
Traceback (most recent call last):
File "/home/…
-
When converting to NetworkX, isolated vertices are dropped. Example:
```python
M=gb.Matrix.from_edgelist([(0,1),(3,0)],nrows=5,ncols=5)
G=gb.io.to_networkx(M)
```
`G.nodes` gives `NodeView((0…
-
`GxB_Type_fprint` print and check a `GrB_Type`
`GxB_UnaryOp_fprint` print and check a `GrB_UnaryOp`
`GxB_BinaryOp_fprint` print and check a `GrB_BinaryOp`
`GxB_Monoid_fprint` print and check a `G…
-
in `ga.Graph.__init__` we can specify `key_to_id`. I can't see any reason why this _must_ be a `stdlib.dict` and not any other class that implements the `typing.Mapping` protocol (`__getitem__`, `__le…
-
While going through the CMake infra, I saw BSP1D explicitly requires the `reference_omp` backend. But should it not only require `reference`? (Hybrid is the one that requires `reference_omp` (and thus…