view src/parallel_execution/examples/bitonicSort/SortArray.h @ 582:2a97d22c2a76

fix bitonicSort example
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Wed, 27 Nov 2019 18:44:00 +0900
parents 4fdeb0afc187
children
line wrap: on
line source

typedef struct SortArray<Impl>{
    union Data* sortArray;
    struct Integer *array;
    int loopCounter;
    int block;
    int first;
    int prefix;
} SortArray;