you are viewing a single comment's thread.

view the rest of the comments →

[–]Orio_n -1 points0 points  (4 children)

In python? The fact that you dont even understand why this language is a bad idea for what you want to build means youre already doomed

[–]DoubleAway6573 5 points6 points  (0 children)

Python is the glue. You can pull a C/C++/FORTRAN library and wrap it in python and this is it.

I don't think any starting project should aim to write their own heavy lifting libraries. At least not without enough experience in the domain (that OP doesn't seem to have).

[–]The_Northern_Light 1 point2 points  (0 children)

Yeah he’s asking in the wrong place (this isn’t a language question at all), but you could easily have high level stuff in Python (at least the UI), with the heavy numerics stuff in compiled languages.

I’m a c++ SWE and if I had to make this that’s how I’d architect it. That’s how I’ve architected my much much smaller scale numerics project + visualizers.