Quentin Lambert

Results 48 comments of Quentin Lambert

``` model C parameter Real a [3]; end C; model B C c[5, 2](a =fill(1, size(c,1),size(c,2),size(c,3))); end B; ``` I meant that. Henrik explained that you would have to count...

Sorry, ``` model C parameter Real a [3]; end C; model B C c[5, 2](a =fill(1, size(c.a,1),size(c.a,2),size(c.a,3))); end B; ```

Why isn't the size of the enclosing array of `a.x.start` in `DimensionTest`, `[3, 2]`?

Would that be invalid then: ``` model DimensionTest4 constant Real ref[2] = {1.9, 3.0}; model A Real x[2](start = ref[1:2]); equation der(x) = -x; end A; A a[3](x(each start =...

@eshmoylova I agree with a lot of what you said. The way I expressed myself was ambiguous. What I don't understand is, given: > So you need to determine what...

@eshmoylova I can see that making sense. If the others agree, I can think of a proposal for a better wording and a helpful example.

In the current interpretation of the specs I would consider the following model invalid since it contains an `outer` declaration with a declaration equation: ``` model MissingInner model Q outer...

> > I am happy with the proposal as it is. > > Can you see that this would also work for #2602? Yes, hence my comment. Once we have...

I think checking the variability of arguments given to function calls against the declared variability should be easy enough. My question referenced `discrete` but it wasn't limited to it. I...

Can you explain on which basis, you would reject `PartialCall2`? Btw, it seems to me that both can't be invalid at the same time unless we forbid the partial application...