changeset 1032:793b21a8ea12

fix include
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 24 Oct 2023 12:25:40 +0900
parents 2caac93dee00
children c9e962c63595
files src/parallel_execution/DebugWorker/DebugWorker.cbc src/parallel_execution/DebugWorker/TaskIterator.c src/parallel_execution/ModelChecking/MCWorker.cbc src/parallel_execution/ModelChecking/TaskIterator.c src/parallel_execution/examples/DPPMC/AtomicTImpl.cbc src/parallel_execution/examples/DPPMC/ForkImpl.cbc src/parallel_execution/examples/DPPMC/McDPP.h src/parallel_execution/examples/DPPMC/PhilsImpl.cbc src/parallel_execution/examples/DPPMC/main.cbc src/parallel_execution/examples/DebughelloWorld/HelloImpl.cbc src/parallel_execution/examples/DebughelloWorld/main.cbc src/parallel_execution/examples/bitonicSort/bitonicSort.cbc src/parallel_execution/examples/bitonicSort/bitonicSwap.cbc src/parallel_execution/examples/bitonicSort/makeArray.cbc src/parallel_execution/examples/bitonicSort/printArray.cbc src/parallel_execution/examples/bitonicSort/sort.cbc src/parallel_execution/examples/boundedBuffer/BoundedBuffer.cbc src/parallel_execution/examples/boundedBuffer/SemaphoreImpl.cbc src/parallel_execution/examples/boundedBuffer/consumer.cbc src/parallel_execution/examples/boundedBuffer/eNum.cbc src/parallel_execution/examples/boundedBuffer/initBuffer.cbc src/parallel_execution/examples/boundedBuffer/main.cbc src/parallel_execution/examples/boundedBuffer/producer.cbc src/parallel_execution/examples/calc/add.cbc src/parallel_execution/examples/calc/calc.cbc src/parallel_execution/examples/calc/initIntegerDataGears.cbc src/parallel_execution/examples/calc/mult.cbc src/parallel_execution/examples/distributedCountUp/CountUpImpl.cbc src/parallel_execution/examples/distributedCountUp/echoNum.cbc src/parallel_execution/examples/distributedCountUp/main.cbc src/parallel_execution/examples/gearsDirectory/GearsDirectoryImpl.cbc src/parallel_execution/examples/gearsDirectory/GearsDirectory_test.cbc src/parallel_execution/examples/gearsFile/GearsFileImpl.cbc src/parallel_execution/examples/gearsFile/GearsFile_test.cbc src/parallel_execution/examples/gearsFile/GearsFiletest.cbc src/parallel_execution/examples/helloWorld/HelloImpl.cbc src/parallel_execution/examples/helloWorld/main.cbc src/parallel_execution/examples/piposaru/LexerImpl.cbc src/parallel_execution/examples/piposaru/main.cbc src/parallel_execution/examples/pop_and_push/StackTest2Impl.cbc src/parallel_execution/examples/pop_and_push/StackTestImpl.cbc src/parallel_execution/examples/pop_and_push/StackTestImpl3.cbc src/parallel_execution/examples/rbtTest_sync/rbTree_sync_test.cbc src/parallel_execution/examples/socketQueue/LocalDGMQueue.cbc src/parallel_execution/examples/socketQueue/Local_test.cbc src/parallel_execution/examples/socketQueue/RemoteDGMQueue.cbc src/parallel_execution/examples/socketQueue/Remote_test.cbc src/parallel_execution/examples/socketQueue/wordCount_Remote.cbc src/parallel_execution/examples/socket_test/ServerImpl.cbc src/parallel_execution/examples/socket_test/socket_test.cbc src/parallel_execution/examples/wc/CountImpl.cbc src/parallel_execution/examples/wc/WcImpl.cbc src/parallel_execution/examples/wc/main.cbc src/parallel_execution/generate_stub.pl src/parallel_execution/perlTests/BoundedBuffer.c src/parallel_execution/perlTests/testfiles/twice/main.c src/parallel_execution/test/cbc_stack_test.c src/parallel_execution/test/fsTree_test.cbc src/parallel_execution/test/multiDimIterator_test.cbc src/parallel_execution/test/printIterator.cbc src/parallel_execution/test/queue_test.cbc src/parallel_execution/test/rbTree_test.cbc src/parallel_execution/test/rb_tree_test1.cbc src/parallel_execution/test/stack_test.cbc
diffstat 64 files changed, 5 insertions(+), 66 deletions(-) [+]
line wrap: on
line diff
--- a/src/parallel_execution/DebugWorker/DebugWorker.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/DebugWorker/DebugWorker.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../context.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- a/src/parallel_execution/DebugWorker/TaskIterator.c	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/DebugWorker/TaskIterator.c	Tue Oct 24 12:25:40 2023 +0900
@@ -1,5 +1,4 @@
 #include <stdio.h>
-#include "../context.h"
 #include "TaskIterator.h"
 #include "state_db.h"
 
--- a/src/parallel_execution/ModelChecking/MCWorker.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/ModelChecking/MCWorker.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../context.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>
--- a/src/parallel_execution/ModelChecking/TaskIterator.c	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/ModelChecking/TaskIterator.c	Tue Oct 24 12:25:40 2023 +0900
@@ -1,7 +1,7 @@
 #include <stdio.h>
-#include "../context.h"
+#include "context.h"
+#include "../ModelChecking/state_db.h"
 #include "TaskIterator.h"
-#include "state_db.h"
 
 TaskIterator* createQueueIterator(Element* elements, StateDB s, TaskIterator* prev) {
     TaskIterator* new = (TaskIterator*)calloc(1, sizeof(TaskIterator));
--- a/src/parallel_execution/examples/DPPMC/AtomicTImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DPPMC/AtomicTImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #impl "AtomicT_int.h" as "AtomicT_intImpl_int.h"
 #include <stdio.h>
 
--- a/src/parallel_execution/examples/DPPMC/ForkImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DPPMC/ForkImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Fork.h"
 
 // ----
--- a/src/parallel_execution/examples/DPPMC/McDPP.h	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DPPMC/McDPP.h	Tue Oct 24 12:25:40 2023 +0900
@@ -1,8 +1,8 @@
 #ifndef MCDPP_H
 #define MCDPP_H 0
 
-#include "../../context.h"
-#include "../../ModelChecking/state_db.h"
+#include "context.h"
+#include "../ModelChecking/state_db.h"
 
 /*
    00  don't care
--- a/src/parallel_execution/examples/DPPMC/PhilsImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DPPMC/PhilsImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #impl "Phils.h" as "PhilsImpl.h"
 #interface "Fork.h"
--- a/src/parallel_execution/examples/DPPMC/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DPPMC/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -3,7 +3,6 @@
 #include <stdlib.h>
 #include <unistd.h>
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "Phils.h"
 #interface "Fork.h"
--- a/src/parallel_execution/examples/DebughelloWorld/HelloImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DebughelloWorld/HelloImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #impl "Hello.h" as "HelloImpl.h"
 #interface "Hello.h"
--- a/src/parallel_execution/examples/DebughelloWorld/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/DebughelloWorld/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "Hello.h"
 
--- a/src/parallel_execution/examples/bitonicSort/bitonicSort.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/bitonicSort/bitonicSort.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 #include <math.h>
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 
 int cpu_num = 1;
--- a/src/parallel_execution/examples/bitonicSort/bitonicSwap.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/bitonicSort/bitonicSwap.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 
 #ifdef USE_CUDAWorker
--- a/src/parallel_execution/examples/bitonicSort/makeArray.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/bitonicSort/makeArray.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #interface "Timer.h"
 
--- a/src/parallel_execution/examples/bitonicSort/printArray.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/bitonicSort/printArray.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Timer.h"
 #include <stdio.h>
 
--- a/src/parallel_execution/examples/bitonicSort/sort.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/bitonicSort/sort.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,6 +1,5 @@
 #include<stdio.h>
 #include <stdlib.h>
-#include "../../../context.h"
 #define LOGN 5
 #define MAX 1 << LOGN
 
--- a/src/parallel_execution/examples/boundedBuffer/BoundedBuffer.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/BoundedBuffer.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Buffer.h"
 #interface "Semaphore.h"
 
--- a/src/parallel_execution/examples/boundedBuffer/SemaphoreImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/SemaphoreImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Semaphore.h"
 #interface "Queue.h"
 #interface "TaskManager.h"
--- a/src/parallel_execution/examples/boundedBuffer/consumer.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/consumer.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #interface "Buffer.h"
 
--- a/src/parallel_execution/examples/boundedBuffer/eNum.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/eNum.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "CountUp.h"
 
 __code eNum(struct CountUp* countUp, int num, __code next(...), struct LoopCounter* loopCounter) {
--- a/src/parallel_execution/examples/boundedBuffer/initBuffer.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/initBuffer.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 
 __code initBuffer(__code next(struct Buffer* output, struct Integer* output1, ...)) {
     goto next(output, output1, ...);
--- a/src/parallel_execution/examples/boundedBuffer/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 #include <assert.h>
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 
 int cpu_num = 1;
--- a/src/parallel_execution/examples/boundedBuffer/producer.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/boundedBuffer/producer.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Buffer.h"
 
 __code producer(struct Buffer* buffer, struct Integer* length, __code next(...), struct LoopCounter* loopCounter) {
--- a/src/parallel_execution/examples/calc/add.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/calc/add.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 __code add(struct Integer* input1, struct Integer* input2, __code next(struct Integer* output, ...)) {
 
--- a/src/parallel_execution/examples/calc/calc.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/calc/calc.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 #include <assert.h>
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "Timer.h"
 
--- a/src/parallel_execution/examples/calc/initIntegerDataGears.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/calc/initIntegerDataGears.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 __code initIntegerDataGears(__code next(struct Integer* output1, struct Integer* output2, struct Integer* output3, ...)) {
     output1->value = 1;
--- a/src/parallel_execution/examples/calc/mult.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/calc/mult.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 __code mult(struct Integer* input1, struct Integer* input2, __code next(struct Integer* output, ...)) {
 
--- a/src/parallel_execution/examples/distributedCountUp/CountUpImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/distributedCountUp/CountUpImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #impl "CountUp.h" as "CountUpImpl.h"
 #interface "Worker.h"
 #interface "TaskManager.h"
--- a/src/parallel_execution/examples/distributedCountUp/echoNum.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/distributedCountUp/echoNum.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #interface "CountUp.h"
 #interface "CNumber.h"
--- a/src/parallel_execution/examples/distributedCountUp/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/distributedCountUp/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 #include <assert.h>
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "CountUp.h"
 #interface "CNumber.h"
--- a/src/parallel_execution/examples/gearsDirectory/GearsDirectoryImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/gearsDirectory/GearsDirectoryImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "GearsDirectory.h"
 #interface "Stack.h"
 #interface "FTree.h"
--- a/src/parallel_execution/examples/gearsDirectory/GearsDirectory_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/gearsDirectory/GearsDirectory_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "GearsDirectory.h"
 
 
--- a/src/parallel_execution/examples/gearsFile/GearsFileImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/gearsFile/GearsFileImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #interface "GearsFile.h"
 #interface "Queue.h"
--- a/src/parallel_execution/examples/gearsFile/GearsFile_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/gearsFile/GearsFile_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "GearsFile.h"
 #interface "FileData.h"
 #include <stdio.h>
--- a/src/parallel_execution/examples/gearsFile/GearsFiletest.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/gearsFile/GearsFiletest.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "GearsFile.h"
 
--- a/src/parallel_execution/examples/helloWorld/HelloImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/helloWorld/HelloImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #impl "Hello.h" as "HelloImpl.h"
 #interface "Hello.h"
--- a/src/parallel_execution/examples/helloWorld/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/helloWorld/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "Hello.h"
 
--- a/src/parallel_execution/examples/piposaru/LexerImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/piposaru/LexerImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #interface "Lexer.h"
 
--- a/src/parallel_execution/examples/piposaru/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/piposaru/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -3,7 +3,6 @@
 #include <stdlib.h>
 #include <unistd.h>
 
-#include "../../../context.h"
 #interface "TaskManager.h"
 #interface "Lexer.h"
 
--- a/src/parallel_execution/examples/pop_and_push/StackTest2Impl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/pop_and_push/StackTest2Impl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "StackTest2.h"
 
 // ----
--- a/src/parallel_execution/examples/pop_and_push/StackTestImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/pop_and_push/StackTestImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #impl "StackTest.h"
 #interface "StackTest2.h"
 #interface "Stack.h"
--- a/src/parallel_execution/examples/pop_and_push/StackTestImpl3.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/pop_and_push/StackTestImpl3.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "StackTest.h"
 #interface "StackTest2.h"
 #interface "Stack.h"
--- a/src/parallel_execution/examples/rbtTest_sync/rbTree_sync_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/rbtTest_sync/rbTree_sync_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,5 +1,4 @@
 #include <stdio.h>
-#include "../../../context.h"
 #interface "Tree.h"
 #interface "Queue.h"
 
--- a/src/parallel_execution/examples/socketQueue/LocalDGMQueue.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socketQueue/LocalDGMQueue.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "TQueue.h"
 #interface "Atomic.h"
 #interface "FileString.h"
--- a/src/parallel_execution/examples/socketQueue/Local_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socketQueue/Local_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "TQueue.h"
 #interface "Integer.h"
 #interface "FileString.h"
--- a/src/parallel_execution/examples/socketQueue/RemoteDGMQueue.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socketQueue/RemoteDGMQueue.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "TQueue.h"
 #interface "Atomic.h"
 #interface "FileString.h"
--- a/src/parallel_execution/examples/socketQueue/Remote_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socketQueue/Remote_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "TQueue.h"
 #interface "Integer.h"
 #interface "FileString.h"
--- a/src/parallel_execution/examples/socketQueue/wordCount_Remote.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socketQueue/wordCount_Remote.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "TQueue.h"
 #interface "Integer.h"
 #interface "FileString.h"
--- a/src/parallel_execution/examples/socket_test/ServerImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socket_test/ServerImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Server.h"
 #impl "Server.h" as "ServerImpl.h"
 
--- a/src/parallel_execution/examples/socket_test/socket_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/socket_test/socket_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #interface "Server.h"
 
 __code Task1(Server* server){ 
--- a/src/parallel_execution/examples/wc/CountImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/wc/CountImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #impl "Wc.h" as "CountImpl.h"
 #interface "Wc.h"
--- a/src/parallel_execution/examples/wc/WcImpl.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/wc/WcImpl.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 #include <stdio.h>
 #impl "Wc.h" as "WcImpl.h"
 #interface "WcResult.h"
--- a/src/parallel_execution/examples/wc/main.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/examples/wc/main.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 
 
-#include "../../../context.h"
 #data "wcTarget.h"
 #interface "TaskManager.h"
 #interface "Wc.h"
--- a/src/parallel_execution/generate_stub.pl	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/generate_stub.pl	Tue Oct 24 12:25:40 2023 +0900
@@ -639,7 +639,7 @@
         }
     }
     open my $fd,">",$fn or die("can't write $fn $!");
-    print $fh "#include \"context.h\"\n";
+    print $fd "#include \"context.h\"\n";
 
     my $prevCodeGearName;
     my $inTypedef  = 0;
--- a/src/parallel_execution/perlTests/BoundedBuffer.c	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/perlTests/BoundedBuffer.c	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../../context.h"
 
 Buffer* createBoundedBuffer(struct Context* context, int size) {
     struct Buffer* buffer = &ALLOCATE(context, Buffer)->Buffer;
--- a/src/parallel_execution/perlTests/testfiles/twice/main.c	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/perlTests/testfiles/twice/main.c	Tue Oct 24 12:25:40 2023 +0900
@@ -3,7 +3,6 @@
 #include <stdlib.h>
 #include <unistd.h>
 
-#include "../../../context.h"
 
 int cpu_num = 1;
 int length = 102400;
--- a/src/parallel_execution/test/cbc_stack_test.c	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/cbc_stack_test.c	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../context.h"
 #include <assert.h>
 
 __code stack_test1(struct Context* context, struct Task* task, struct Stack* stack) {
--- a/src/parallel_execution/test/fsTree_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/fsTree_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,5 +1,4 @@
 #include <stdio.h>
-#include "../../context.h"
 #interface "Tree.h"
 
 /* #include <assert.h> */
--- a/src/parallel_execution/test/multiDimIterator_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/multiDimIterator_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -4,7 +4,6 @@
 #include <unistd.h>
 #interface "TaskManager.h"
 
-#include "../../context.h"
 
 int cpu_num = 1;
 int length = 1;
--- a/src/parallel_execution/test/printIterator.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/printIterator.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../context.h"
 #include <stdio.h>
 __code printIterator(struct MultiDim* multiDim, __code next(...)) {
     printf("x: %d, y: %d, z: %d\n", multiDim->x, multiDim->y, multiDim->z);
--- a/src/parallel_execution/test/queue_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/queue_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../context.h"
 #interface "Queue.h"
 #include <assert.h>
 
--- a/src/parallel_execution/test/rbTree_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/rbTree_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,5 +1,4 @@
 #include <stdio.h>
-#include "../../context.h"
 #interface "Tree.h"
 
 /* #include <assert.h> */
--- a/src/parallel_execution/test/rb_tree_test1.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/rb_tree_test1.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,5 +1,4 @@
 #include <stdio.h>
-#include "../../context.h"
 #interface "Tree.h"
 
 __code createRBTreeTest(struct Tree* tree) {
--- a/src/parallel_execution/test/stack_test.cbc	Tue Oct 24 12:15:07 2023 +0900
+++ b/src/parallel_execution/test/stack_test.cbc	Tue Oct 24 12:25:40 2023 +0900
@@ -1,4 +1,3 @@
-#include "../../context.h"
 #interface "Stack.h"
 #include <assert.h>
 // use "TaskManager.h"