Reputation: 21
I'm re-visiting Algol68 because I think it's historically important. I would like to link one of my programs (written as a student) to the NAG library routine f07abf (linear equation solver). The question is, being a retired academic, do I need to purchase the NAG library, and how do I link it to the program using a68g on my Ubuntu system? The NAG website itself is quite technical and I need some guidance.
Upvotes: 2
Views: 91
Reputation: 1279
I don't have a full answer, but a few hints:
Algol68
version of NAG has been lost, they also hinted (if someone can find a copy) that they might be reasonable about giving permission to use the Algol68
version of NAG. I suggest you find your old university's version, and then ask NAG for permission to use. (Let me know what version you do find, your university may have one in archive, ask them, it might be on disk archive, or still on a dusty old BASF magnetic tape, tapes can still be read.)ALIEN
" subroutines from algol68toc
(aka Algol68RS
), so you can call a FORTRAN
or C
version of f07abf
. I've done somethings similar and it worked.algol68
at linkedin where you can ask these kind of questions.f07abf
author for permission to use the original f07abf
.I hope this helps.
Upvotes: 1