Archive for April, 2007

BibTeX is now running…

April 26, 2007

Finally we’ve got the Bibliography working. Here is the two most used BibTeX enteries:
@Misc{WEBSIDE-skabelon,
title = {Web-title},
url = {http://www.cs.aau.dk},
note = {Dette er CS-websiden}
}
@Book{BOG-skabelon,
author = {Fortattere hvis flere adskilles de med and},
title = {Bogens titel},
publisher = {Forlag},
year = {2000},
edition = {First Edition}
}
When you cite a source in the report you can use the following commandd:

\cite{jon90}
–>
[21]

\citet{jon90}
–>
Jones et al. [...]

Dijkstra’s shortest path in momo!

April 23, 2007

Well, I’ve been coding for some hours now, fiddling around with implementing Dijkstra’s shortest path algorithm in momo.
I like it as it is right now, but due to our unfinished compiler, I can’t promise that it does’t contain errors
Also, I think we need a long talk about reference vs value representation of all [...]