-
This code:
```
program main
implicit none
abstract interface
subroutine dgemm_interface(A, B, C, m, k, n)
double precision, dimension(:), allocatable, intent(in), target :: A, B
…
-
A very common request is to allow templates for subroutines or functions, in order to allow code like the following:
```fortran
function f(x)
, intent(in) :: x
f = x + 1
end func…
-
With PR #3250. Requested in #3046.
```fortran
module temp_module
interface all_close
procedure :: all_close_1_rsp
procedure :: all_close_2_csp
end interface all_close
contains
elem…
-
This thread contains the MREs from failing third-party code compilation with `simplifier_pass`.
## SNAP (2)
- [x] https://github.com/lfortran/lfortran/issues/4761#issuecomment-2334093421
- [x] …
-
## Introduction
This is a holding issue for the Keyman Developer LDML keyboard designer. We'll be filling this in as we complete planning and design.
**Objective:** build a tool that allows intu…
-
In 15.5.2.9(1) appears a requirement that the effective argument procedure must have the same characteristics as the corresponding dummy procedure when the interface of the dummy procedure is explic…
-
### Motivation
Equations such as $ax^2 + bx + c = 0$ are common across all fields of science and engineering. Often one would like to find the roots of such a quadratic equation. The solution of th…
-
main issue: #8629
Which of the following styles do we want to support for an interface declaration?
**(implicit)** the type `Self` is implicitly the formal
This would be particularly useful if …
-
I'd like to add OpenXR support, opening this issue to discuss the right way to do that.
My first pass at the needed API changes for minimalist XR support:
`IEngineFactory`:
* `CreateOpenXRFacto…
-
**Disclaimer:** I'm using the latest tagged versions of all libraries (libnetconf2, libyang, sysrepo and netopeer2).
**Question:** is it expected behavior for sysrepo to remove an entire list when …