Error Messages/40622
< Error Messages
Revision as of 19:27, 22 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = An unnamed index and a self-index are both present in the result, which is not allowed. = Cause = Analytica allows only one implicit index to def…')
Error Message Examples
An unnamed index and a self-index are both present in the result, which is not allowed.
Cause
Analytica allows only one implicit index to define objects and results, and self-index is an implicit index. The result was self indexed and also had another implicit index which is not allowed.
A table defined as below would generate this error:
Table(self)(1..5, 6..10)
Remedies
Create an explicit index and change the result to use the created index to solve this issue.
The above table definition can be corrected as follows:
IndexA Index IndexA := 1..2;
Table definition Table(IndexA)(1..5, 6..10)
Comments
<comments />
Enable comment auto-refresher