Yusuf Canbaz

Results 32 comments of Yusuf Canbaz

not really. It would be more convenient for me to use directly `evaluate('sin(90)')`. A configuration for the default units would be nice

I couldn't understand why "it's so easy to make mistakes". When a user enters expression like "sin(34)" changing them like "sin(34 deg)" for every trigonometric function is hard because there...

@Tobychidi I built a calculator https://github.com/canbax/hasap Here I make a topological sorting of math expressions and then change the angle units one by one https://github.com/canbax/hasap/blob/7d6a28aa1a757e6b536727b5fce2842e00a7f755/src/app/app.component.ts#L513

For the record, I solved my problem by setting the size of HTML element manually using JS

It tries to print BestComps. `Bestcomps = nx.connected_components(G)` nextworkx 1.10 returns a generators [here you can see](https://networkx.github.io/documentation/networkx-1.10/reference/generated/networkx.algorithms.components.connected.connected_components.html) to see the resultant graph you can use something like `best_graph = G.copy()`....

It's about your version of networkx. Use 1.10 version. [this version](https://networkx.github.io/documentation/networkx-1.10/reference/generated/networkx.Graph.nodes.html) returns a list. Some versions might return a generator which has no len()

you can look at my implementation which draws using matplotlib.pyplot [fork of this repo](https://github.com/canbax/community)

Algorithm by itself is slow. It is something like O(n^3). Algorithm runs until there are no edges which is really not necessary. You can terminate algorithm early. Actually if you...

@itf @bentole @hotpeperoncino Now unstable version has `loadJson` and `saveJson` functions. You can try it and maybe close this issue it works fine.

The first bug doesn't seem like a bug to me. It is a misuse of the API. You should not let the user expand a `cy-expand-collapse-meta-edge` It is a meta...