model.intRule()
Integration rules.
Syntax
model.intRule().create(<tag>,<ftag>);
model.intRule(<tag>).frame(<ftag>);
model.intRule(<tag>).create(<ftag>);
model.intRule(<tag>).feature(<ftag>).order(gporder);
model.intRule(<tag>).feature(<ftag>).getAllowedPropertyValues(property);
model.intRule(<tag>).frame();
Description
model.intRule().create(<tag>,<ftag>) creates an integration rule for the frame <ftag>.
model.intRule(<tag>).frame(<ftag>) sets the frame for the integration rule.
model.intRule(<tag>).create(<ftag>) creates an integration rule feature.
model.intRule(<tag>).feature(<ftag>).order(gporder) specifies the integration order of the integration rule.
model.intRule(<tag>).frame() returns the frame as a string.
model.intRule(<tag>).feature(<ftag>)).getAllowedPropertyValues(property) returns the set of allowed values for a property if the set is a finite set of strings; otherwise, it returns null.
Example
Specify two integration rules, one with the integration order 2 and one with the integration order 4.
Code for Use with Java
model.intRule().create("ir1","f");
model.intRule("ir1").create("ir1").order(2);
model.intRule("ir1").create("ir2").order(4);
Code for Use with MATLAB
model.intRule.create('ir1','f');
model.intRule('ir1').create('ir1').order(2);
model.intRule('ir1').create('ir2').order(4);
See Also
model.shape()