We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The variable managing the code coding from scanner is the following one:
map<int,string> cellsMap<-[1::"Aquaculture", 2::"Rice",3::"Vegetables", 4::"Industrial"];
But, this variable is used as follow: cell[i,j].type<-cellsMap.values[id];
cell[i,j].type<-cellsMap.values[id];
This seems that the key of cellsMap is never used. This makes the model hard to update, in particular if we want to manage the -1 value.
cellsMap
The text was updated successfully, but these errors were encountered:
You're right the key is never used. I can change it to a list of string? I don't see how this make the model harder to update?
Sorry, something went wrong.
for issue #33
539428e
Do you prefer this ? 539428e
IF yes I let you close this issue
Also what do you mean by "This makes the model hard to update"? In term of time of update or if we want to modify it?
No branches or pull requests
The variable managing the code coding from scanner is the following one:
But, this variable is used as follow:
cell[i,j].type<-cellsMap.values[id];
This seems that the key of
cellsMap
is never used.This makes the model hard to update, in particular if we want to manage the -1 value.
The text was updated successfully, but these errors were encountered: