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

Function DeleteArray

analysis/TMscore.cpp:2479–2485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2477}
2478
2479template <class A> void DeleteArray(A *** array, int Narray)
2480{
2481 for(int i=0; i<Narray; i++)
2482 if(*(*array+i)) delete [] *(*array+i);
2483 if(Narray) delete [] (*array);
2484 (*array)=NULL;
2485}
2486
2487string AAmap(char A)
2488{

Callers 4

calculate_score_gotohFunction · 0.70
NWalign_mainFunction · 0.70
clean_up_after_approx_TMFunction · 0.70
mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected