Vikas Sharma

Results 16 comments of Vikas Sharma

Also, it would be better to break the inline statement which separates expressions using semicolon. For example, from ```fortran if( 2> 1) then; a = a + 2; else; a...

@certik In the following https://github.com/fortran-lang/stdlib/blob/89feb9167b8ed0cd95a1c8a027646ca1fec362a1/src/stdlib_experimental_sparse.f90#L36 instead of using `tiny(1.0)` please declare a parameter: ```fortran real(dp), parameter :: zero=tiny(1.0_dp) ... if (abs(B(i, j)) < zero ) cycle ... ```

@certik In the following subroutine https://github.com/fortran-lang/stdlib/blob/89feb9167b8ed0cd95a1c8a027646ca1fec362a1/src/stdlib_experimental_sparse.f90#L44-L53 you can exploit `do concurrent` ```fortran do concurrent(n = 1:size(Ai)) B(Ai(n), Aj(n)) = B(Ai(n), Aj(n)) + Ax(n) end do ```

Any updates?

I use following config file: Please let me know if you need more information. ```txt case = [2,2,2,2] line-length = 78 indent = 2 disable-indent = false strict-indent = true...

This behavior is correct. Although, I am not able to find an official documentation about the label specifier. From my experience, it is a good practice to put label at...