TEDx Manchester: AI & The Future of WorkVolker Hirsch
?
TEDx Manchester talk on artificial intelligence (AI) and how the ascent of AI and robotics impacts our future work environments.
The video of the talk is now also available here: https://youtu.be/dRw4d2Si8LA
23. 切符番号選び
combine :: Expr -> Expr -> [Expr]
combine l r = [App o l r | o<-ops]
ops :: [Op]
ops = [Add,Sub,Mul,Div]
--2つの式にすべての演算を適用
--[Add 式1 式2, Sub 式1 式2, Mul 式1 式2, Div
式1 式2]
23
26. 高速化
type Result = (Expr, Int)
combine' :: Result -> Result -> [Result]
combine' (l,x) (r,y) = [(App o l r, apply o x y)|o <-
ops, valid o x y]
--2つのExprに対して、validな演算すべてを
適用
26