You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# AlgorithmInterface.jl
2
2
3
-
`AlgorithmInterface.jl` is a Julia package tp provide a common interface to run iterative tasks. **Algorith** here refers to an iterative sequence of commands, that are run until a certain stopping criterion is met.
3
+
`IterativeAlgorithmsInterface.jl` is a Julia package tp provide a common interface to run iterative tasks. **Algorith** here refers to an iterative sequence of commands, that are run until a certain stopping criterion is met.
4
4
5
5
# Statement of need
6
6
7
-
A first approach to algorithms is a simple for-loop for a maxiimum number of iterations.
7
+
A first approach to algorithms is a simple for-loop for a maximum number of iterations.
8
8
Using an interface instead allows to both specify different criteria to stop easily, even in their combination.
9
9
Furthermore a generic interface allows to both “hok into” an algorithm easily as well as combining them.
0 commit comments