Members
Publications
Software / Data
Job offers
Images / Videos
Collaborations
Conferences
Lab meetings: "Les partages de midi"
Practical information
Members Area
Next conferences we are in …





import os import sys class Test: #Constructeur def __init__(self): self.test = 'test' #Methode show def show(self): print self.test #Main du script if __name__ == '__main__': t = Test() t.show()
#include <time.h> int main() { clock_t tStart=clock(); { // Ici on met le code a mesurer } clock_t tFinish=clock(); std::cout<<"Time: "<<(tFinish-tStart)/((double) CLOCKS_PER_SEC)<<std::endl; return 0; }
#Test de project template project(Template) FindITK() set(MYPROJECT "MyNewPoject" CACHE STRING "Fill in the name of the project") configure_file(${Template_SOURCES_DIR}/CMakeLists.txt.in ${Template_BINARY_DIR}/CMakeLists.txt)