DefaultRoutingSearchParameters

DefaultRoutingSearchParameters

我已经安装了ortools,正如this链接中提到的那样。
之后,我从文档中复制了车辆路径问题并尝试执行,在我的系统中使用了Python2.7.12。
我最终犯了以下错误:

   >>python or_test.py
      Traceback (most recent call last):
      File "or_test.py", line 120, in <module>
      main()
      File "or_test.py", line 52, in main
     search_parameters = pywrapcp.DefaultRoutingSearchParameters()
   AttributeError: 'module' object has no attribute
  'DefaultRoutingSearchParameters'

问题链接示例:
https://developers.google.com/optimization/routing/tsp/vehicle_routing

最佳答案

基于example from the repo,您可以获得如下默认参数:

 search_parameters = pywrapcp.RoutingModel.DefaultSearchParameters()

关于python - AttributeError:“模块”对象没有属性“DefaultRoutingSearchParameters”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47738916/

10-10 14:54