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
% tabela | |
\begin{table}[h] | |
\centering | |
\begin{tabular}{ l|rrrr } | |
\toprule | |
& Problematic methods & Search Duration & Transform Duration \\ | |
\midrule | |
fenixedu-academic & 2 & 498.83s & 574.35s \\ |
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
(defun inc-generator (zero incer) | |
#'(lambda () | |
(progn (setf zero (funcall incer zero)) | |
zero))) | |
(defun init-vec (dim initer) | |
(if (= 0 dim) | |
() | |
(init-vec (cons (initer) (init-vec (- dim 1) initer))))) |
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
/********************** | |
* fordingTheRiver.js * | |
********************** | |
* | |
* And there's the river. Fortunately, I was prepared for this. | |
* See the raft on the other side? | |
* | |
* Everything is going according to plan. | |
*/ |