Created
December 17, 2019 17:25
-
-
Save beezee/e9cd4fee2af25ba638b2fb0abdd1e811 to your computer and use it in GitHub Desktop.
shipments-example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new geolocations, milestones. (Shipments[geolocations, milestones] | Orders[milestones] | OceanInsights[geolocations]) | |
Shipments[g, m] := g(geo).Shipments_Recv_Geolocation[g, m, geo] + tau.new milestone.Shipments_Send_Milestone[g, m, milestone] | |
Shipments_Recv_Geolocation[g, m, geo] := tau.Shipments[g, m] | |
Shipments_Send_Milestone[g, m, ms] := m<ms>.Shipments[g, m] | |
Orders[m] := m(milestone).Orders_Recv_Milestone[m, milestone] | |
Orders_Recv_Milestone[m, ms] := tau.Orders[m] | |
OceanInsights[g] := tau.new geolocation.OceanInsights_Geolocation[g, geolocation] | |
OceanInsights_Geolocation[g, geo] := g<geo>.OceanInsights[g] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment