Alex Vasile
Alex Vasile
If I run a 2D solve and export my vector field in .vtu format, ParaView will not allow me to use it as the input for vector filters. I can...
When I try calling ngs.solvers.CG as: ```python ngs.solvers.CG(mat=a_assembled.mat, rhs=L_assembled.vec, pre=precond, sol=gfu.vec, tol=self.solver_tolerance, maxsteps=self.solver_max_iters, printrates=self.verbose, initialize=False) ``` It produces the following warning in the console: `WARNING: maxsteps is deprecated, use maxiter...
Leftover TODOs from #9328: - [ ] Several very similar `MoveCounterFromTargetToTargetEffect` should be refactored to a common class - [ ] Change cards to make use of new `SpellCastControllerTriggeredAbility`'s `fromZone`...
The following test fails randomly. Something like 1-16 to 1-25 times. https://github.com/magefree/mage/blob/37f4f40a2c4962ce707521515de9c108bd16c003/Mage.Tests/src/test/java/org/mage/test/cards/abilities/other/AuratouchedMageTest.java#L35-L53 Changing the lands to dual lands improves that, but it will still fail. [[Auratouched Mage]] See #9391
I think this can be merged as is but there probably has to be a separate refactor for effects that distribute among targets _Originally posted by @theelk801 in https://github.com/magefree/mage/issues/9408#issuecomment-1234966660_
Closes #8823.
https://github.com/magefree/mage/blob/b5016693652deba8307c067f5dc9a39e392915b4/Mage.Tests/src/test/java/org/mage/test/cards/single/tor/RadiateTest.java#L48-L49
Reported potential issues to look into: - [ ] "if I open and close the card viewer, the memory used slowly climbs up" - [ ] "Not consistently repeatable, but...
The issue is straightforward to describe: Many cards have targeted triggered abilities, e.g. "When {A} {do B to} target ..." or worse "when {A} {do B to} **up to**...". These...
Currently AsThoughEffect use their `applies` method to *both* identify if the asThoughEffect can be used AND to make changes to the state of the game. E.g. [[Bolas's Citadel]] has the...