* Class: LAC * Method: init * Signature: (Ljava/lang/String;)V */
| 43 | * Signature: (Ljava/lang/String;)V |
| 44 | */ |
| 45 | JNIEXPORT void JNICALL Java_com_baidu_nlp_LAC_init(JNIEnv *env, jobject thisObj, jstring model_dir) |
| 46 | { |
| 47 | |
| 48 | LAC *self = new LAC(env->GetStringUTFChars(model_dir, 0)); |
| 49 | _set_self(env, thisObj, self); |
| 50 | } |
| 51 | |
| 52 | /* |
| 53 | * Class: LAC |
nothing calls this directly
no test coverage detected