Sum Distances To Origin Using Higher Order Functions Assignment
Revision as of 20:39, 26 September 2022 by Dennis.cosgrove (talk | contribs) (Created page with "=Motivation= Gain experience using higher-order functions. =Previous Warmup= This warmup is a variation of the Sum_Distances_To_Origin_With_Functions_Assignment|Sum Distanc...")
Motivation
Gain experience using higher-order functions.
Previous Warmup
This warmup is a variation of the Sum Distances To Origin with Functions warmup.
Code To Implement
file: | src/main/sml/warmup_sum_distances_to_origin_using_hof/sum_distances_to_origin.sml | |
functions: | sum_distances_to_origin |
fun sum_distances_to_origin(xys : (real * real) list)
Test
source folder: | src/test/sml/warmup_sum_distances_to_origin_using_hof |
how to run with CM.make verbosity off: | sml -Ccm.verbose=false run_sum_distances_to_origin_using_hof_testing.sml |
how to run with CM.make verbosity on: | sml run_sum_distances_to_origin_using_hof_testing.sml |
note: ensure that you have removed all printing to receive credit for any assignment.