This file contains hidden or 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
| function f_timetrial() { | |
| echo "Please wait for $1 computation(s) of $2"; | |
| echo "Average:" $(for i in `seq 1 $1`; do time /bin/sh $2; done 2>&1 | grep ^real | sed -e s/.*m// | awk '{sum += $1} END {print sum / NR}';) "Second(s)." | |
| } | |
| alias timetrial=f_timetrial; |
This file contains hidden or 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
| <link href="../paper-tabs/paper-tabs.html" rel="import"> | |
| <link href="../paper-tabs/paper-tab.html" rel="import"> | |
| <link href="../core-icons/core-icons.html" rel="import"> | |
| <link href="../core-icons/av-icons.html" rel="import"> | |
| <link href="../paper-fab/paper-fab.html" rel="import"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> |