MCPcopy Create free account
hub / github.com/bytedance/dplm / NewArray

Function NewArray

analysis/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.70
NWalign_mainFunction · 0.70
TMscore_mainFunction · 0.70
mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected