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
#!/usr/bin/env python3 | |
import os | |
import sys | |
datadir = sys.argv[1] | |
data_points = [] | |
headers = [] |
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
#include <array> | |
#include <iostream> | |
using namespace std; | |
template<unsigned int n0, unsigned int... rest> | |
struct last_element | |
{ | |
constexpr static unsigned int value = last_element<rest...>::value; | |
}; |
OlderNewer