Skip to content

Commit 9f0ef4a

Browse files
authored
Merge pull request #367 from SimonRohou/codac2_dev
[tube] corrected error in tube operations
2 parents c05b403 + fcd6707 commit 9f0ef4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/domains/tube/codac2_SlicedTube_operations.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace codac2
3232
for(auto it = y.tdomain()->begin() ; it != y.tdomain()->end() ; it++) \
3333
{ \
3434
auto sy = y.slice(it); \
35-
sy->codomain() = f(sy->codomain(),x2.slice(it)->codomain()); \
35+
sy->codomain() = f(x1.slice(it)->codomain(),sy->codomain()); \
3636
} \
3737
return y; \
3838
} \

0 commit comments

Comments
 (0)