You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some functionalities of dictionaries in the manual seems not to work. (Or it's still incomplete?)
Adding a function into a dictionary,
CF f;
#opendictionary test
#add f: "\ln"
#closedictionary
.end
gives a segfault.
Indices are not correctly translated.
T t;
Indices mu,nu,ro,si;
#opendictionary test
#add mu: "\mu"
#add nu: "\nu"
#add ro: "\rho"
* #add si: "\sigma"
#closedictionary
L F = t(mu,nu,ro,si);
L G = t(mu,nu,ro);
#usedictionary test
P;
.end
gives
F =
t(mu,nu,ro,\rho);
G =
t(mu,nu,ro);
The text was updated successfully, but these errors were encountered:
Some functionalities of dictionaries in the manual seems not to work. (Or it's still incomplete?)
Adding a function into a dictionary,
gives a segfault.
Indices are not correctly translated.
gives
The text was updated successfully, but these errors were encountered: