-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed libgap module #151
Removed libgap module #151
Conversation
JuliaInterface/src/JuliaInterface.c
Outdated
@@ -51,13 +51,10 @@ jl_module_t * get_module_from_string(char * name) | |||
// This function needs to be called after the `gaptypes.jl` | |||
// file is loaded into Julia and the GAP module is present. | |||
// Therefore we do not call in InitKernel, but in the `read.g` file. | |||
Obj Func_InitializeGAPFFEType(Obj self) | |||
Obj Func_InitializeInternalGlobalVariables(Obj self) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't matter right now, but the name _InitializeInternalGlobalVariables
of course does not indicate where it is from; perhaps we should imitate SingularInterface and NormalizInterface, and start using a common name prefix like _JI
, at least for our internal functions?
if !libgap.gap_is_initialized | ||
libgap.run_it(GAPPATH) | ||
if !GAP.gap_is_initialized | ||
GAP.run_it(GAPPATH) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README also needs to be adapted in the same way, i.e., changing libgap.run_it
to GAP.run_it
Codecov Report
@@ Coverage Diff @@
## master #151 +/- ##
==========================================
+ Coverage 54% 54.04% +0.03%
==========================================
Files 39 39
Lines 2324 2326 +2
==========================================
+ Hits 1255 1257 +2
Misses 1069 1069
|
276440b
to
6031011
Compare
6031011
to
20f30b6
Compare
No description provided.