Jacob Williams
Jacob Williams
One big question is, do we want this library to contain numerical/scientific type codes? For example, ODE solvers, optimizers, interpolation, etc... The sorts of things that were in [SLATEC](http://www.netlib.org/slatec/) and...
@ivan-pi I will die a little inside for every fixed-format Fortran file that gets added. 🤣 But, yes, my preference would be to modernize any old code. At a bare...
This is great! But can the examples be written in modern Fortran? I don't think there is any reason to use the F77 format nowadays. Do you need some assistance...
This is what I have in mind: https://github.com/jacobwilliams/hiop/blob/modern-fortran/src/Drivers/Dense/NlpDenseConsFEx1.f90
I guess they changed something in python or matplotlib? It used to work. I'll try to take a look when I get a chance.
Yes, my application is this: an interactive Fortran program that has the feature of allowing a user to write and load their own Python plugins to do specific things. Each...
Are you willing to share the mods you already made? Was there any indication that they improved performance? I could merge them into the main branch if so. I can...
Note: a quick test on my laptop shows a speed up from the previous version. Likely due to the others changes I made: ``` speed_test_oo (Cases/sec) v5.4.2 v6.0.0 1D 15889442...
Ah interesting. Yes, I think this is the way to go: ```fortran real(wp),parameter :: wdtol = real(radix(1.0_wp), dp)**(1 - digits(1.0_wp)) ``` I you make a merge request I can merge...
@japaf Do you have any interest in contributing your CMake updates to the main branch? We have a basic CMake configuration file now. I see that you also added one...