Hi community,
I've 2 question,
I'm trying to run a moderate linear(to be specific 2628 equations) algebraic problem solution, based on Gauss elimination. The solution phase is taking approx. 4-5 min. The global matrix is not optimized, so that means 2628x2628 global matrix in size, and I didn't play around with any configurations in Project settings. Even though I did have such a impediments, is it normall to have such an execution time for moderately large algebraic systems ?
What happens if I define something like that :
allocate ( loading(neq) ) ... .... variable = loading(0); ..... ....
Normally this should have thrown exception about 'Out of Index Error' but compiler returns the smallest value (e.g. -1e-302 ) depending on the selected real kind parameter definitions. If we leave aside the exception issue, I would expect it to return 0 for not defined values.
Is this also an expected behaviour ?
Regards,