Skip to main content
Advanced post-search relations allow you to penalize a generated hypothesis depending on the properties of the element. The purpose of these constraints is to adjust an already generated hypothesis.
The major difference between Advanced post-search relations andAdvanced pre-search relations is that the program starts to consider the post-search relations only after the hypothesis has been formulated.
Do not write the name of the element in the code of the Advanced post-search relations. For example, to access the Width property of some Element1, write simply Width.
Constraints set in the Advanced post-search relations pane are applied to each formulated hypothesis of the element independently of the other hypotheses. Different hypotheses for one and the same element cannot be compared. You can only adjust the quality of a specific hypothesis by studying its properties and imposing certain constraints on it. Any command or constraint in the Advanced post-search relations pane returns an estimate of the quality of the hypothesis for the given element. Estimates obtained by applying different constraints are multiplied.
Additional constraints set on the Advanced tab in the Advanced post-search relations pane may only refer to the current element and the elements located above the current element in the FlexiLayout tree. If this condition is not met, the program will highlight the illegal element.

You can use this pane to do the following:

E.g.:The constraint Width > 5*cm for a hypothesis 3cm long will return a quality of 0, which will cause the program to stop formulating hypotheses for the element and its subelements.
E.g.:The following condition checks the height of the hypothesis and, depending on the result, limits or adjusts its width.if Height > 3cm then Width > 5cm;
You can adjust the quality of a hypothesis by calling the Quality(q) function, where q is a variable of type Quality. Executing this command multiplies the quality of the hypothesis by q.Important! Use of this feature requires caution. Do not use it if you are not sure of the results.