Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 drools6 中创建动态显着性。 我的项目要求是创建一个像“ Sailence (1000*weighting+sequence) ”这样的显着性。
其中权重 ==(10 优先级)
有可能创建这个吗? 如果是,您能否提供任何示例或链接?
提前致谢
确实可以通过使用绑定到模式中的字段的变量来定义显着性表达式:
rule hugo salience 1000*(10-$priority)+$sequence when Foo( $priority: priority ) Bar( $sequence: sequence ) then ... end