Hi!
I get an error when trying to compile my program:
test8.f95:26.8:
BMat = BMatScal(InverseJacobian, ShapeFuncDeriv)
1
Error: Function 'bmatscal' at (1) has no IMPLICIT type
I don't know why it complains because I specified type of the function in its definition (please see...
jedishrfu, Thanks a lot for the link to Stackoverflow! It helped. It turns out that when you use MODULE the interface is being generated automatically, so the program knows it. Ergo, the problem was in my second MODULE 'ty' with explicit INTERFACE. I got rid of it. Now everything runs smoothly...
Hi!
I require help in writing a code where I want to put FUNCTION definitions in one module and INTERFACEs to the functions (as I use assumed-shape arrays in the functions) in another. But I get multiple errors when trying to compile. Could anyone assist me in solving this problem? Please see...