Jump to content
IGNORED

What exactly is repeated three times in Tri Repetae?


splesh

Recommended Posts

  • Replies 76
  • Created
  • Last Reply

void tri(int T[], in N)

{

int i,j,temp;

 

for(i=N-1; i>0 ; i--)

for(j=1;j<=i;j++)

{

if(T[j-1]>T[j])

{

temp=T[j-1];

T[j-1]=T[j];

T[j]=temp;

}

}

}

Link to comment
Share on other sites

It's not Tri as in 3 times, it's Tri as in, to sort, from the verb trier. In C programming, in french, a tri répété is one example of the sort (Bubble Sort iirc)

 

 

The ++ is a pun on the C++ programming.

 

void tri(int T[], in N)

{

int i,j,temp;

 

for(i=N-1; i>0 ; i--)

for(j=1;j<=i;j++)

{

if(T[j-1]>T[j])

{

temp=T[j-1];

T[j-1]=T[j];

T[j]=temp;

}

}

}

 

 

That's a tri répété iirc (haven't done C programming in decades)

Link to comment
Share on other sites

It's not Tri as in 3 times, it's Tri as in, to sort, from the verb trier. In C programming, in french, a tri répété is one example of the sort (Bubble Sort iirc)

 

 

The ++ is a pun on the C++ programming.

 

void tri(int T[], in N)

{

int i,j,temp;

 

for(i=N-1; i>0 ; i--)

for(j=1;j<=i;j++)

{

if(T[j-1]>T[j])

{

temp=T[j-1];

T[j-1]=T[j];

T[j]=temp;

}

}

}

 

 

That's a tri répété iirc (haven't done C programming in decades)

 

that's a bubble sort, dunno what they call it in your crazy moon language

Link to comment
Share on other sites

  • 1 year later...

So a bump on this crazy thread. Been listening to this album a lot lately as the CD found its way into my car.

 

It really is amazingly deep considering how few basic components there are in most of the tracks.

 

And to be honest, I dont know what is repeated 3 times.

Link to comment
Share on other sites

Was it my imagination, or didn't someone find a correlation between every Autechre album and the number of album it was..

 

examples:

LP5 - fifth album

Moves of 10 - 10th album

Tri Repetae - 3rd album

Link to comment
Share on other sites

  • 4 weeks later...

When they first started Autechre there were 3 band members (Sean,Rob and a guy named Josh) .. Josh left Autechre right before Lego Feet was released.

 

When Autecre (now as Rob and Sean) started recording Tri Repetae they found a box in Rob's attic full of DATs labeled "Josh"...it was Josh's recordings from when they first started Autechre. They used those DATs in Tri Repetae.

 

So Tri Repetae means TRIo Repeats (again)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.