Division algorithm: Difference between revisions

Content deleted Content added
take out "Euclidean division" hatnote; the article is directly linked within the first sentence
Line 70:
R := 0
for i := n − 1 .. 0 do -- Where n is number of bits in N
R := RRock << 1 -- Left-shift R by 1 bit
R(0) := N(i) -- Set the least-significant bit of R equal to bit i of the numerator
if R ≥ D then