7 Commits
Author SHA1 Message Date
copilot-swe-agent[bot]andmagnesj 2a0f9a3b25 #14520 Fix Cell Edge Results loaded even if disabled
Co-authored-by: magnesj <1793152+magnesj@users.noreply.github.com>
2026-08-13 15:51:46 +02:00
copilot-swe-agent[bot]andmagnesj e8628ac94d Fix Copilot setup-steps compatibility for agent runs
Agent-Logs-Url: https://github.com/magnesj/ResInsight/sessions/3b42d031-f22b-4a85-a4a7-9be76cd74263

Co-authored-by: magnesj <1793152+magnesj@users.noreply.github.com>
2026-05-24 08:11:04 +02:00
copilot-swe-agent[bot]andmagnesj be55d3f4a7 CI: add workflow to test latest rips against latest ResInsight artifact
Agent-Logs-Url: https://github.com/magnesj/ResInsight/sessions/5f1f1cff-d8ff-4f91-9315-fc85786f9fcf

Co-authored-by: magnesj <1793152+magnesj@users.noreply.github.com>
2026-05-09 14:32:47 +02:00
copilot-swe-agent[bot] 8cfbfb9773 #13676 Grid model: Include negative values for DEPTH calculations 2026-03-26 11:20:41 +01:00
copilot-swe-agent[bot] 2f08f15fc9 #13676 Grid model: Include negative values for DEPTH calculations 2026-03-23 15:17:27 +01:00
Copilot 9701f695d8 Python: Expose port number in the Instance class 2026-03-23 08:59:52 +01:00
copilot-swe-agent[bot] 8bbd0d2551 Improve support for aggregating functions
When aggregating functions (min, max, sum, avg) are applied to a single vector variable, they compute a scalar result over the whole vector. These must be pre-computed before the element-wise for loop, otherwise the variable gets replaced with its indexed version (e.g. min(b) -> min(b[i])) which changes the semantics: min(b[i]) returns b[i], not min of all b.

Add check for pattern: c := agg_func(if(condition, true_expr, false_expr)).  Computes a scalar aggregate of the element-wise if-result and assigns it as a constant to all elements of c.
2026-02-23 19:19:09 +01:00