-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Right now variables are defined like :
my_var = Var(Type, "my_var")But in principle it is possible to use python's inspect module to simplify this to just:
my_var = Var(Type)And have the alias inferred from the name of the python variable that Var is bound to:
There will probably be edge cases where this is not possible in which case the variables should remain anonymous until a name can be auto-assigned (like x0,x1,x2,...) when the Var is included in an operation or condition
Reactions are currently unavailable