Arlon-Marche-Bastogne (Chamber of Representatives constituency)
Arlon-Marche-Bastogne was a constituency used to elect members of the Belgian Chamber of Representatives between 1900 and 1999.
Representatives
Election | Representative (Party) |
Representative (Party) |
Representative (Party) | |||
---|---|---|---|---|---|---|
1900 | Formed from a merger of Arlon, Marche and Bastogne | |||||
Adolphe de Limburg Stirum (Catholic) |
Emile François (Liberal) |
Henry Delvaux de Fenffe (Catholic) | ||||
1904 | ||||||
1908 | Camille Ozeray (Liberal) |
Léon du Bus de Warnaffe (Catholic) | ||||
1912 | ||||||
1919 | ||||||
1921 | Fernand Van den Corput (Catholic) | |||||
1925 | Albert Goffaux (PS) |
Jean Merget (Catholic) | ||||
1929 | ||||||
1932 | Alphonse Materne (Catholic) | |||||
1936 | Alphonse Collet (REX) | |||||
1939 | Max Bourguignon (Catholic) | |||||
1946 | Justin Gaspar (CVP) |
Ernest Rongvaux (BSP) | ||||
1949 | Camille Decker (CVP) | |||||
1950 | ||||||
1954 | Ernest Rongvaux (BSP) | |||||
1958 | ||||||
1961 | Roger Lamers (BSP) | |||||
1965 | Louis Olivier (PVV) | |||||
1968 | Charles-Ferdinand Nothomb (CVP) |
Marcel Rasquin (BSP) | ||||
1971 | Marcel Remacle (PSB) | |||||
1974 | ||||||
1977 | ||||||
1978 | Marcel Remacle (PS) | |||||
1981 | Jacques Santkin (PS) | |||||
1985 | ||||||
1988 | ||||||
1991 | Antoine Duquesne (PRL) | |||||
1995 | Merged into Arlon-Marche-Bastogne-Neufchâteau-Virton |
gollark: ```haskellimport Data.Listimport Data.Bits fib :: Int -> Integerfib n = snd . foldl_ fib_ (1, 0) . dropWhile not $ [testBit n k | k <- let s = bitSize n in [s-1,s-2..0]] where fib_ (f, g) p | p = (f*(f+2*g), ss) | otherwise = (ss, g*(2*f-g)) where ss = f*f+g*g foldl_ = foldl' -- '```
gollark: import Data.Listimport Data.Bits fib :: Int -> Integerfib n = snd . foldl_ fib_ (1, 0) . dropWhile not $ [testBit n k | k <- let s = bitSize n in [s-1,s-2..0]] where fib_ (f, g) p | p = (f*(f+2*g), ss) | otherwise = (ss, g*(2*f-g)) where ss = f*f+g*g foldl_ = foldl' -- '
gollark: 3.1 Using 2x2 matricesThe argument of iterateabove is a linear transformation, so we can represent it as matrix and compute the nth power of this matrix with O(log n) multiplications and additions.For example, using the simple matrix implementation in Prelude extensions,fib n = head (apply (Matrix [[0,1], [1,1]] ^ n) [0,1])
gollark: 0, 1, 1, 2, 3...
gollark: d o n ' t c h a n g e p e r
References
- "De Belgische Kamer van volksvertegenwoordigers". dekamer.be. Retrieved 2019-05-30.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.