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
## Contributor Agreement | |
## Individual Contributor Exclusive License Agreement | |
## (including the Traditional Patent License OPTION) | |
Thank you for your interest in contributing to University of Sheffield's Test Project ("We" or "Us"). | |
The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us. To make this document effective, please follow the instructions at https://github.com/mondus/CLATest. |
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
#!/bin/bash | |
# Script for installing R 3.6.3 on Bede | |
# | |
# The require dependancies are | |
# * bzip2 | |
# * curl | |
# |-> openssl | |
# * pcre | |
# * xz | |
# * R |
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
%feature("flatnested"); | |
%rename (Outer_Inner) Outer::Inner; | |
%inline %{ | |
class Outer { | |
public: | |
void OuterFunc() {}; | |
template<typename T> void TemplatOuterFunc(); |