在许多其他编程语言中,您可以将函数作为参数传递给另一个函数,并在函数内调用它。
无论如何都要在Netlogo中执行此操作吗?
如下:
;; x,y,z are all ints
to-report f [x y z]
report x + y + z
end
;; some-function is a function
;; x y and z are ints
to-report g [some-function x y z]
report (some-function x y z) + 2
end
to go
show g f 1 2 3
end
这将是一个很好的功能。我正在尝试实现一个抽象的局部搜索算法,这对于传递目标函数等很好。
答案 0 :(得分:4)
您可以通过创建任务并使用runresult来执行任务来将函数作为参数传递。
;; x,y,z are all ints
to-report f [x y z]
report x + y + z
end
;; some-function is a function
;; x y and z are ints
to-report g [some-function x y z]
report (runresult some-function x y (z + 2))
end
to go
show g (task f) 1 2 3
end
答案 1 :(得分:3)
从Netlogo 6.0.1开始,箭头语法取代了任务。下面的内容与接受的答案相同,但使用了更新的语法。
to-report f [x y z]
report x + y + z
end
;; some-function is a function
;; x y and z are ints
to-report g [some-function x y z]
report (runresult some-function x y (z + 2))
end
to go
show g [[x y z] -> (f x y z)] 1 2 3
end