Skip to content

Instantly share code, notes, and snippets.

@oppahero
Created April 1, 2018 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oppahero/6210f6338a84c77db1dd62b3d1b79fc7 to your computer and use it in GitHub Desktop.
Save oppahero/6210f6338a84c77db1dd62b3d1b79fc7 to your computer and use it in GitHub Desktop.
//Método que realiza la composición de las permutaciones recibidas y la retorna
public Permutacion operarPermutaciones(Permutacion p1, Permutacion p2){
int pos1,pos2,pos3;
pos1 = p2.devuelveVert(p1.devuelveVert(1));
pos2 = p2.devuelveVert(p1.devuelveVert(2));
pos3 = p2.devuelveVert(p1.devuelveVert(3));
Permutacion aux;
aux = new Permutacion (pos1,pos2,pos3);
asignaNombre(aux);
return aux;
}
public int devuelveVert(int base){
return matriz[1][base-1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment