"...automata-library.git" did not exist on "3fef381f84f59110e0d4d1001a6b9bb9350173b8"
cli: algorithm templated with unsigned int
I have registered two algorithms generate::RandomFactory
. One templated with int
, second with unsigned
.
CLI correctly says that they are present:
> introspect algorithms generate::
generate::RandomFactory @int
generate::RandomFactory @unsigned int
The int
one seems to work:
> print generate::RandomFactory @int
361755023
But I don't know how to invoke the unsigned
one. Note the second attempt: I am writing @unsigned int
(same as in the output of the introspect command above) but I'm not sure whether parser understood it correctly as it report < [unsigned] >
for @unsigned int
> print generate::RandomFactory @unsigned
0 [Standard exception]: Evaluation of algorithm generate::RandomFactory failed.
1 [Standard exception]: Templated entry generate::RandomFactory < [unsigned] > not available
> print generate::RandomFactory @unsigned int
0 [Standard exception]: Evaluation of algorithm generate::RandomFactory failed.
1 [Standard exception]: Templated entry generate::RandomFactory < [unsigned] > not available
> print generate::RandomFactory "@unsigned int"
0 [Standard exception]: Evaluation of algorithm generate::RandomFactory failed.
1 [Standard exception]: Entry generate::RandomFactory not available