Skip to content

Commit

Permalink
Fixes to make Minsky buildable.
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed Nov 7, 2024
1 parent 5ef94ac commit 4f8e1aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ OBJS+=src/getContext.o
LIBS+=-framework AppKit
endif

CDHDRS=ref.cd random.cd random_basic.cd TCL_obj_base.cd RESTProcess_base.cd signature.cd netcomplexity.cd graph.cd cachedDBM.cd sparse_mat.cd analysis.cd analysisBLT.cd analysisCairo.cd plot.cd cairoSurfaceImage.cd poly.cd polyRESTProcess.cd
CDHDRS=ref.cd random.cd random_basic.cd TCL_obj_base.cd RESTProcess_base.cd signature.cd netcomplexity.cd graph.cd cachedDBM.cd sparse_mat.cd analysis.cd analysisBLT.cd analysisCairo.cd plot.cd cairoSurfaceImage.cd poly.cd polyRESTProcess.cd polyRESTProcessBase.cd

ifdef UNURAN
CDHDRS+=random_unuran.cd
Expand Down
2 changes: 1 addition & 1 deletion classdesc
Submodule classdesc updated 49 files
+27 −0 .github/workflows/ci-debug.yml
+2 −1 Dockerfile
+5 −0 Makefile
+8 −3 RESTProcessExample/Makefile
+1 −1 RESTProcessExample/RESTProcessExample.cc
+3 −2 RESTProcessExample/RESTProcessExample.h
+7 −5 RESTProcessExample/RESTProcessExample.txt
+3 −5 RESTProcessExample/RESTProcessExpected.txt
+1 −1 RESTProcessExample/SimpleBufferExample.cc
+217 −0 RESTProcessExample/example.py
+14 −0 RESTProcessExample/pyExample.cc
+230 −193 RESTProcess_base.h
+208 −70 RESTProcess_epilogue.h
+40 −4 classdesc.cc
+69 −41 classdesc.h
+3 −5 classdescMP.h
+4 −4 classdesc_access.h
+2 −2 examples/graphnode.cc
+14 −11 json_pack_base.h
+12 −2 json_pack_epilogue.h
+1 −1 mpi-examples/Makefile
+16 −11 object.h
+30 −9 pack_base.h
+6 −0 pack_epilogue.h
+2 −0 poly.h
+3 −3 polyRESTProcess.h
+716 −0 pythonBuffer.h
+10 −0 signature.h
+4 −0 test/00/baseClassTypeName.sh
+4 −0 test/00/inheritedNested.sh
+39 −0 test/00/python2.sh
+4 −0 test/00/qt.sh
+6 −1 test/00/t0015a.sh
+3 −0 test/00/t0016a.sh
+4 −0 test/00/t0019a.sh
+12 −0 test/00/t0020a.sh
+4 −0 test/00/t0021a.sh
+4 −0 test/00/t0023a.sh
+7 −5 test/00/t0044a.sh
+4 −0 test/00/t0061a.sh
+4 −0 test/00/t0065a.sh
+1 −0 test/c++11/c++Features.cc
+1 −0 test/miscMemberTypes.cc
+1 −1 test/testExclude.cc
+1 −0 test/testJavaClass.cc
+9 −0 test/test_private.out
+9 −0 test/test_private.private.out
+9 −2 typeName_epilogue.h
+3 −2 use_mbr_pointers.h
2 changes: 1 addition & 1 deletion models/jellyfish.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class jlist: public vector<classdesc::ref<jellyfish> >,
return j? j->size()+1: 1;
}
jlist(): etime(1) {}
jlist(const jlist& x): object(x), vector<classdesc::ref<jellyfish> >(x), etime(x.etime) {}
jlist(const jlist& x): classdesc::Object<jlist, GRAPHCODE_NS::object>(x), vector<classdesc::ref<jellyfish> >(x), etime(x.etime) {}

/* utility access routines */
typedef vector<classdesc::ref<jellyfish> >::iterator iterator;
Expand Down

0 comments on commit 4f8e1aa

Please sign in to comment.