Prolog 紧凑吗?
我有一个问题,我需要像这样压缩导数结果:
0*x*x + 2*(1*x + x*1) =====> example: 0+2*(2*x) =====> 0+2*4*x====>8*x
可能吗?感谢您的帮助。
问候, 伏尔特
I have a problem, I need to compact a derivative result like this:
0*x*x + 2*(1*x + x*1) =====> example: 0+2*(2*x) =====> 0+2*4*x====>8*x
Is it possible? Thanks for your help.
Regards,
Volter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的,只是需要一些工作。您需要编写原子规则,例如
并实现固定点谓词(可能是 故障驱动循环),应用规则直到收敛。
Yes, this is possible, it just takes some work. You'll need to write out atomic rules such as
and implement a fixpoint predicate (maybe a failure-driven loop) that applies rules until convergence.