Vlad Kemsekov

Results 17 comments of Vlad Kemsekov

By the way the same problem with PC VRAM (not gpu). When I use multiple diffusers it loads all of them into VRAM of pc(thanks it does not hold them...

Matebook d16 the same problem is here. This is sad how often manufacturers completely forgets about linux support.

Longest path per vertex will be any [hamiltonian path](https://en.wikipedia.org/wiki/Hamiltonian_path) that starts from this particular vertex, or if a [hamiltonian cycle](https://en.wikipedia.org/?title=Hamiltonian_cycle&redirect=no) exists within graph, then longest path will be the same...

Just sharing my experience.

[Dijkstra algorithm can be performed in parallel](https://cse.buffalo.edu/faculty/miller/Courses/CSE633/Ye-Fall-2012-CSE633.pdf) This is not a particular solution to early termination, but it would help to improve performance.

Here is a thing. I used to create a centrality approxmation as follows: 1) Find all strongly-connected components 2) From each of strongly-connected components do following: 1) Take a random...

You can copy implementation of [networkx tree isomorphism](https://github.com/networkx/networkx/blob/0c503e31ba0062dc9a4ed47c380481aa8d6978c8/networkx/algorithms/isomorphism/tree_isomorphism.py) [vf2 isomorphism](https://github.com/networkx/networkx/blob/5bc077c27155649f2503150a2623f49de093b332/networkx/algorithms/isomorphism/isomorphvf2.py) and see how other people implemented ``is_isomorphic`` in general [here](https://github.com/networkx/networkx/blob/5bc077c27155649f2503150a2623f49de093b332/networkx/algorithms/isomorphism/isomorph.py) Of course graph isomorphism is NP problem so there is...

Text over node is done.

This is interesting question. I honestly don't even know what it means to implement such lazy loading in the first place. 😅 You mean to create some graph implementation that...

Hello! Each path finding algorithm have a `PathType` parameter. You can see more detailed example here. https://github.com/Kemsekov/GraphSharp.Samples/blob/main/samples%2FFindPathByMeetInTheMiddle%2FProgram.cs In general you just invoke methods trough `Do` object. ```cs var paths =...