1 //
2 //  rsh.h
3 //  libmsym
4 //
5 //  Created by Marcus Johansson on 21/10/15.
6 //  Copyright (c) 2015 Marcus Johansson.
7 //
8 //  Distributed under the MIT License ( See LICENSE file or copy at http://opensource.org/licenses/MIT )
9 //
10 
11 #include "msym.h"
12 
13 typedef struct _rsh_representations {
14     int d;
15     void *t;
16 } rsh_representations_t;
17 
18 msym_error_t generateRSHRepresentations(int sopsl, msym_symmetry_operation_t sops[sopsl], int lmax, rsh_representations_t *lrs);
19