MCPcopy Create free account
hub / github.com/THUNLP-MT/MEAN / NewArray

Function NewArray

evaluation/TMscore.cpp:2473–2477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2471}
2472
2473template <class A> void NewArray(A *** array, int Narray1, int Narray2)
2474{
2475 *array=new A* [Narray1];
2476 for(int i=0; i<Narray1; i++) *(*array+i)=new A [Narray2];
2477}
2478
2479template <class A> void DeleteArray(A *** array, int Narray)
2480{

Callers 4

calculate_score_gotohFunction · 0.85
NWalign_mainFunction · 0.85
TMscore_mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected