modelx.uncached#
- uncached(space=None, name=None, *funcs)[source]#
Decorator to create or update an uncached cells from a Python function.
This decorator is an alies for
defcells(is_cached=False)
.Example
import modelx as mx @mx.uncached def foo(x): return x
See also
Added in version 0.27.0.