fix(GraphNetwork): working on loads of small bugs
Fized stoichiometry matrix initialization, added penames to reablib reactions, began work on LogicalReaction to sum the contributions of different fitting functions provided by reaclib
This commit is contained in:
@@ -1,14 +1,20 @@
|
||||
required_headers = [
|
||||
'reaclib.h',
|
||||
'reactions.h',
|
||||
'gridfire/reaclib.h',
|
||||
'gridfire/reactions.h',
|
||||
]
|
||||
|
||||
foreach h : required_headers
|
||||
if not cpp.has_header(h, include_directories: include_directories('include'))
|
||||
error('SERiF requires the header file ' + h + ' to be present in the assets/static/reaclib/include directory.')
|
||||
error('GridFire requires the header file ' + h + ' to be present in the assets/static/reaclib/include/gridfire directory.')
|
||||
endif
|
||||
endforeach
|
||||
reaclib_reactions_dep = declare_dependency(
|
||||
include_directories: include_directories('include'),
|
||||
)
|
||||
message('✅ SERiF reaclib_reactions dependency declared')
|
||||
message('✅ GridFire reaclib_reactions dependency declared')
|
||||
|
||||
to_install_headers = [
|
||||
'include/gridfire/reaclib.h',
|
||||
'include/gridfire/reactions.h',
|
||||
]
|
||||
install_headers(to_install_headers, subdir: 'gridfire/gridfire')
|
||||
|
||||
Reference in New Issue
Block a user