All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scijava.ops.engine.matcher.impl.OpWrappers Maven / Gradle / Ivy

The newest version!
/*-
 * #%L
 * Java implementation of the SciJava Ops matching engine.
 * %%
 * Copyright (C) 2016 - 2024 SciJava developers.
 * %%
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 * 
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 * #L%
 */
/*
 * This is autogenerated source code -- DO NOT EDIT. Instead, edit the
 * corresponding template in templates/ and rerun bin/generate.groovy.
 */

package org.scijava.ops.engine.matcher.impl;

import java.util.function.BiFunction;
import java.util.function.Function;

import org.scijava.function.Computers;
import org.scijava.function.Container;
import org.scijava.function.Functions;
import org.scijava.function.Inplaces;
import org.scijava.function.Producer;
import org.scijava.ops.api.OpEnvironment;
import org.scijava.ops.api.OpInstance;
import org.scijava.ops.api.RichOp;
import org.scijava.ops.engine.OpWrapper;
import org.scijava.ops.engine.MatchingConditions;

public class OpWrappers {

	// -- producer --

	public static class ProducerOpWrapper implements OpWrapper> {

		@Override
		public RichOp> wrap( //
            final OpInstance> instance, //
            final OpEnvironment env, //
            final MatchingConditions conditions)
		{
			class GenericTypedProducer //
				extends AbstractRichOp> //
				implements Producer
			{

				public GenericTypedProducer()
				{
					super(instance, env, conditions);
				}

				@Override
				public T create() {
					preprocess();

					// Call the op
					T out = instance.op().create();

					postprocess(out);

					return out;
				}

				@Override
				public Producer asOpType() {
					return this;
				}

			}
			return new GenericTypedProducer();
		}
	}

	// -- functions --

	public static class Function1OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction1 //
				extends AbstractRichOp> //
				implements Function 
			{

				public GenericTypedFunction1()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I in) //
				{
					preprocess(in);

					// Call the op
					O out = instance.op().apply(in);

					postprocess(out);
					return out;
				}

				@Override
				public Function asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction1();
		}
	}

	public static class Function2OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction2 //
				extends AbstractRichOp> //
				implements BiFunction 
			{

				public GenericTypedFunction2()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2) //
				{
					preprocess(in1, in2);

					// Call the op
					O out = instance.op().apply(in1, in2);

					postprocess(out);
					return out;
				}

				@Override
				public BiFunction asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction2();
		}
	}

	public static class Function3OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction3 //
				extends AbstractRichOp> //
				implements Functions.Arity3 
			{

				public GenericTypedFunction3()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3) //
				{
					preprocess(in1, in2, in3);

					// Call the op
					O out = instance.op().apply(in1, in2, in3);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity3 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction3();
		}
	}

	public static class Function4OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction4 //
				extends AbstractRichOp> //
				implements Functions.Arity4 
			{

				public GenericTypedFunction4()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4) //
				{
					preprocess(in1, in2, in3, in4);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity4 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction4();
		}
	}

	public static class Function5OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction5 //
				extends AbstractRichOp> //
				implements Functions.Arity5 
			{

				public GenericTypedFunction5()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5) //
				{
					preprocess(in1, in2, in3, in4, in5);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity5 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction5();
		}
	}

	public static class Function6OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction6 //
				extends AbstractRichOp> //
				implements Functions.Arity6 
			{

				public GenericTypedFunction6()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6) //
				{
					preprocess(in1, in2, in3, in4, in5, in6);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity6 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction6();
		}
	}

	public static class Function7OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction7 //
				extends AbstractRichOp> //
				implements Functions.Arity7 
			{

				public GenericTypedFunction7()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity7 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction7();
		}
	}

	public static class Function8OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction8 //
				extends AbstractRichOp> //
				implements Functions.Arity8 
			{

				public GenericTypedFunction8()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity8 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction8();
		}
	}

	public static class Function9OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction9 //
				extends AbstractRichOp> //
				implements Functions.Arity9 
			{

				public GenericTypedFunction9()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity9 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction9();
		}
	}

	public static class Function10OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction10 //
				extends AbstractRichOp> //
				implements Functions.Arity10 
			{

				public GenericTypedFunction10()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity10 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction10();
		}
	}

	public static class Function11OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction11 //
				extends AbstractRichOp> //
				implements Functions.Arity11 
			{

				public GenericTypedFunction11()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity11 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction11();
		}
	}

	public static class Function12OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction12 //
				extends AbstractRichOp> //
				implements Functions.Arity12 
			{

				public GenericTypedFunction12()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity12 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction12();
		}
	}

	public static class Function13OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction13 //
				extends AbstractRichOp> //
				implements Functions.Arity13 
			{

				public GenericTypedFunction13()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity13 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction13();
		}
	}

	public static class Function14OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction14 //
				extends AbstractRichOp> //
				implements Functions.Arity14 
			{

				public GenericTypedFunction14()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, I14 in14) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity14 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction14();
		}
	}

	public static class Function15OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction15 //
				extends AbstractRichOp> //
				implements Functions.Arity15 
			{

				public GenericTypedFunction15()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, I14 in14, I15 in15) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity15 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction15();
		}
	}

	public static class Function16OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedFunction16 //
				extends AbstractRichOp> //
				implements Functions.Arity16 
			{

				public GenericTypedFunction16()
				{
					super(instance, env, conditions);
				}

				@Override
				public O apply(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, I14 in14, I15 in15, I16 in16) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15, in16);

					// Call the op
					O out = instance.op().apply(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15, in16);

					postprocess(out);
					return out;
				}

				@Override
				public Functions.Arity16 asOpType() {
					return this;
				}

			}
			return new GenericTypedFunction16();
		}
	}

	// -- computers --

	public static class Computer0OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer0 //
				extends AbstractRichOp> //
				implements Computers.Arity0 
			{
				public GenericTypedComputer0()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(@Container O out) //
				{
					preprocess(out);

					// Call the op
					instance.op().compute(out);

					postprocess(out);
				}

				@Override
				public Computers.Arity0 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer0();
		}
	}

	public static class Computer1OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer1 //
				extends AbstractRichOp> //
				implements Computers.Arity1 
			{
				public GenericTypedComputer1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I in, @Container O out) //
				{
					preprocess(in, out);

					// Call the op
					instance.op().compute(in, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity1 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer1();
		}
	}

	public static class Computer2OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer2 //
				extends AbstractRichOp> //
				implements Computers.Arity2 
			{
				public GenericTypedComputer2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, @Container O out) //
				{
					preprocess(in1, in2, out);

					// Call the op
					instance.op().compute(in1, in2, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity2 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer2();
		}
	}

	public static class Computer3OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer3 //
				extends AbstractRichOp> //
				implements Computers.Arity3 
			{
				public GenericTypedComputer3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, @Container O out) //
				{
					preprocess(in1, in2, in3, out);

					// Call the op
					instance.op().compute(in1, in2, in3, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity3 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer3();
		}
	}

	public static class Computer4OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer4 //
				extends AbstractRichOp> //
				implements Computers.Arity4 
			{
				public GenericTypedComputer4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity4 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer4();
		}
	}

	public static class Computer5OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer5 //
				extends AbstractRichOp> //
				implements Computers.Arity5 
			{
				public GenericTypedComputer5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity5 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer5();
		}
	}

	public static class Computer6OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer6 //
				extends AbstractRichOp> //
				implements Computers.Arity6 
			{
				public GenericTypedComputer6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity6 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer6();
		}
	}

	public static class Computer7OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer7 //
				extends AbstractRichOp> //
				implements Computers.Arity7 
			{
				public GenericTypedComputer7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity7 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer7();
		}
	}

	public static class Computer8OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer8 //
				extends AbstractRichOp> //
				implements Computers.Arity8 
			{
				public GenericTypedComputer8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity8 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer8();
		}
	}

	public static class Computer9OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer9 //
				extends AbstractRichOp> //
				implements Computers.Arity9 
			{
				public GenericTypedComputer9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity9 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer9();
		}
	}

	public static class Computer10OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer10 //
				extends AbstractRichOp> //
				implements Computers.Arity10 
			{
				public GenericTypedComputer10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity10 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer10();
		}
	}

	public static class Computer11OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer11 //
				extends AbstractRichOp> //
				implements Computers.Arity11 
			{
				public GenericTypedComputer11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity11 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer11();
		}
	}

	public static class Computer12OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer12 //
				extends AbstractRichOp> //
				implements Computers.Arity12 
			{
				public GenericTypedComputer12()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity12 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer12();
		}
	}

	public static class Computer13OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer13 //
				extends AbstractRichOp> //
				implements Computers.Arity13 
			{
				public GenericTypedComputer13()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity13 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer13();
		}
	}

	public static class Computer14OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer14 //
				extends AbstractRichOp> //
				implements Computers.Arity14 
			{
				public GenericTypedComputer14()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, I14 in14, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity14 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer14();
		}
	}

	public static class Computer15OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer15 //
				extends AbstractRichOp> //
				implements Computers.Arity15 
			{
				public GenericTypedComputer15()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, I14 in14, I15 in15, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity15 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer15();
		}
	}

	public static class Computer16OpWrapper //
		implements //
		OpWrapper>
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedComputer16 //
				extends AbstractRichOp> //
				implements Computers.Arity16 
			{
				public GenericTypedComputer16()
				{
					super(instance, env, conditions);
				}

				@Override
				public void compute(I1 in1, I2 in2, I3 in3, I4 in4, I5 in5, I6 in6, I7 in7, I8 in8, I9 in9, I10 in10, I11 in11, I12 in12, I13 in13, I14 in14, I15 in15, I16 in16, @Container O out) //
				{
					preprocess(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15, in16, out);

					// Call the op
					instance.op().compute(in1, in2, in3, in4, in5, in6, in7, in8, in9, in10, in11, in12, in13, in14, in15, in16, out);

					postprocess(out);
				}

				@Override
				public Computers.Arity16 asOpType() {
					return this;
				}

			}
			return new GenericTypedComputer16();
		}
	}

	// -- inplaces --

	public static class Inplace1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity1 
			{
				public GenericTypedInplace1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType) //
				{
					preprocess(ioType);

					// Call the op
					instance.op().mutate(ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace1();
		}
	}

	public static class Inplace2_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace2_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity2_1 
			{
				public GenericTypedInplace2_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type) //
				{
					preprocess(ioType, in2Type);

					// Call the op
					instance.op().mutate(ioType, in2Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity2_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace2_1();
		}
	}

	public static class Inplace2_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace2_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity2_2 
			{
				public GenericTypedInplace2_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType) //
				{
					preprocess(in1Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity2_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace2_2();
		}
	}

	public static class Inplace3_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace3_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity3_1 
			{
				public GenericTypedInplace3_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type) //
				{
					preprocess(ioType, in2Type, in3Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity3_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace3_1();
		}
	}

	public static class Inplace3_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace3_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity3_2 
			{
				public GenericTypedInplace3_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type) //
				{
					preprocess(in1Type, ioType, in3Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity3_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace3_2();
		}
	}

	public static class Inplace3_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace3_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity3_3 
			{
				public GenericTypedInplace3_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity3_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace3_3();
		}
	}

	public static class Inplace4_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace4_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity4_1 
			{
				public GenericTypedInplace4_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity4_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace4_1();
		}
	}

	public static class Inplace4_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace4_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity4_2 
			{
				public GenericTypedInplace4_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity4_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace4_2();
		}
	}

	public static class Inplace4_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace4_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity4_3 
			{
				public GenericTypedInplace4_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity4_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace4_3();
		}
	}

	public static class Inplace4_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace4_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity4_4 
			{
				public GenericTypedInplace4_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity4_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace4_4();
		}
	}

	public static class Inplace5_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace5_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity5_1 
			{
				public GenericTypedInplace5_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity5_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace5_1();
		}
	}

	public static class Inplace5_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace5_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity5_2 
			{
				public GenericTypedInplace5_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity5_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace5_2();
		}
	}

	public static class Inplace5_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace5_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity5_3 
			{
				public GenericTypedInplace5_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity5_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace5_3();
		}
	}

	public static class Inplace5_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace5_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity5_4 
			{
				public GenericTypedInplace5_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity5_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace5_4();
		}
	}

	public static class Inplace5_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace5_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity5_5 
			{
				public GenericTypedInplace5_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity5_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace5_5();
		}
	}

	public static class Inplace6_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace6_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity6_1 
			{
				public GenericTypedInplace6_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity6_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace6_1();
		}
	}

	public static class Inplace6_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace6_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity6_2 
			{
				public GenericTypedInplace6_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity6_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace6_2();
		}
	}

	public static class Inplace6_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace6_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity6_3 
			{
				public GenericTypedInplace6_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity6_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace6_3();
		}
	}

	public static class Inplace6_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace6_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity6_4 
			{
				public GenericTypedInplace6_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity6_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace6_4();
		}
	}

	public static class Inplace6_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace6_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity6_5 
			{
				public GenericTypedInplace6_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity6_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace6_5();
		}
	}

	public static class Inplace6_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace6_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity6_6 
			{
				public GenericTypedInplace6_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity6_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace6_6();
		}
	}

	public static class Inplace7_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_1 
			{
				public GenericTypedInplace7_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_1();
		}
	}

	public static class Inplace7_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_2 
			{
				public GenericTypedInplace7_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_2();
		}
	}

	public static class Inplace7_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_3 
			{
				public GenericTypedInplace7_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_3();
		}
	}

	public static class Inplace7_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_4 
			{
				public GenericTypedInplace7_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_4();
		}
	}

	public static class Inplace7_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_5 
			{
				public GenericTypedInplace7_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_5();
		}
	}

	public static class Inplace7_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_6 
			{
				public GenericTypedInplace7_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_6();
		}
	}

	public static class Inplace7_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace7_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity7_7 
			{
				public GenericTypedInplace7_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity7_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace7_7();
		}
	}

	public static class Inplace8_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_1 
			{
				public GenericTypedInplace8_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_1();
		}
	}

	public static class Inplace8_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_2 
			{
				public GenericTypedInplace8_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_2();
		}
	}

	public static class Inplace8_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_3 
			{
				public GenericTypedInplace8_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_3();
		}
	}

	public static class Inplace8_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_4 
			{
				public GenericTypedInplace8_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_4();
		}
	}

	public static class Inplace8_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_5 
			{
				public GenericTypedInplace8_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_5();
		}
	}

	public static class Inplace8_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_6 
			{
				public GenericTypedInplace8_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_6();
		}
	}

	public static class Inplace8_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_7 
			{
				public GenericTypedInplace8_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_7();
		}
	}

	public static class Inplace8_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace8_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity8_8 
			{
				public GenericTypedInplace8_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity8_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace8_8();
		}
	}

	public static class Inplace9_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_1 
			{
				public GenericTypedInplace9_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_1();
		}
	}

	public static class Inplace9_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_2 
			{
				public GenericTypedInplace9_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_2();
		}
	}

	public static class Inplace9_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_3 
			{
				public GenericTypedInplace9_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_3();
		}
	}

	public static class Inplace9_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_4 
			{
				public GenericTypedInplace9_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_4();
		}
	}

	public static class Inplace9_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_5 
			{
				public GenericTypedInplace9_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_5();
		}
	}

	public static class Inplace9_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_6 
			{
				public GenericTypedInplace9_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_6();
		}
	}

	public static class Inplace9_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_7 
			{
				public GenericTypedInplace9_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_7();
		}
	}

	public static class Inplace9_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_8 
			{
				public GenericTypedInplace9_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_8();
		}
	}

	public static class Inplace9_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace9_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity9_9 
			{
				public GenericTypedInplace9_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity9_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace9_9();
		}
	}

	public static class Inplace10_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_1 
			{
				public GenericTypedInplace10_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_1();
		}
	}

	public static class Inplace10_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_2 
			{
				public GenericTypedInplace10_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_2();
		}
	}

	public static class Inplace10_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_3 
			{
				public GenericTypedInplace10_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_3();
		}
	}

	public static class Inplace10_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_4 
			{
				public GenericTypedInplace10_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_4();
		}
	}

	public static class Inplace10_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_5 
			{
				public GenericTypedInplace10_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_5();
		}
	}

	public static class Inplace10_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_6 
			{
				public GenericTypedInplace10_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_6();
		}
	}

	public static class Inplace10_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_7 
			{
				public GenericTypedInplace10_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_7();
		}
	}

	public static class Inplace10_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_8 
			{
				public GenericTypedInplace10_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_8();
		}
	}

	public static class Inplace10_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_9 
			{
				public GenericTypedInplace10_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_9();
		}
	}

	public static class Inplace10_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace10_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity10_10 
			{
				public GenericTypedInplace10_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity10_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace10_10();
		}
	}

	public static class Inplace11_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_1 
			{
				public GenericTypedInplace11_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_1();
		}
	}

	public static class Inplace11_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_2 
			{
				public GenericTypedInplace11_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_2();
		}
	}

	public static class Inplace11_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_3 
			{
				public GenericTypedInplace11_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_3();
		}
	}

	public static class Inplace11_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_4 
			{
				public GenericTypedInplace11_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_4();
		}
	}

	public static class Inplace11_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_5 
			{
				public GenericTypedInplace11_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_5();
		}
	}

	public static class Inplace11_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_6 
			{
				public GenericTypedInplace11_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_6();
		}
	}

	public static class Inplace11_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_7 
			{
				public GenericTypedInplace11_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_7();
		}
	}

	public static class Inplace11_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_8 
			{
				public GenericTypedInplace11_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_8();
		}
	}

	public static class Inplace11_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_9 
			{
				public GenericTypedInplace11_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_9();
		}
	}

	public static class Inplace11_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_10 
			{
				public GenericTypedInplace11_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType, I11 in11Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_10();
		}
	}

	public static class Inplace11_11OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace11_11 //
				extends AbstractRichOp> //
				implements Inplaces.Arity11_11 
			{
				public GenericTypedInplace11_11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity11_11 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace11_11();
		}
	}

	public static class Inplace12_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_1 
			{
				public GenericTypedInplace12_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_1();
		}
	}

	public static class Inplace12_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_2 
			{
				public GenericTypedInplace12_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_2();
		}
	}

	public static class Inplace12_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_3 
			{
				public GenericTypedInplace12_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_3();
		}
	}

	public static class Inplace12_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_4 
			{
				public GenericTypedInplace12_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_4();
		}
	}

	public static class Inplace12_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_5 
			{
				public GenericTypedInplace12_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_5();
		}
	}

	public static class Inplace12_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_6 
			{
				public GenericTypedInplace12_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_6();
		}
	}

	public static class Inplace12_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_7 
			{
				public GenericTypedInplace12_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_7();
		}
	}

	public static class Inplace12_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_8 
			{
				public GenericTypedInplace12_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_8();
		}
	}

	public static class Inplace12_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_9 
			{
				public GenericTypedInplace12_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_9();
		}
	}

	public static class Inplace12_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_10 
			{
				public GenericTypedInplace12_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType, I11 in11Type, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_10();
		}
	}

	public static class Inplace12_11OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_11 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_11 
			{
				public GenericTypedInplace12_11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, IO ioType, I12 in12Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_11 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_11();
		}
	}

	public static class Inplace12_12OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace12_12 //
				extends AbstractRichOp> //
				implements Inplaces.Arity12_12 
			{
				public GenericTypedInplace12_12()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity12_12 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace12_12();
		}
	}

	public static class Inplace13_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_1 
			{
				public GenericTypedInplace13_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_1();
		}
	}

	public static class Inplace13_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_2 
			{
				public GenericTypedInplace13_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_2();
		}
	}

	public static class Inplace13_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_3 
			{
				public GenericTypedInplace13_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_3();
		}
	}

	public static class Inplace13_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_4 
			{
				public GenericTypedInplace13_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_4();
		}
	}

	public static class Inplace13_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_5 
			{
				public GenericTypedInplace13_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_5();
		}
	}

	public static class Inplace13_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_6 
			{
				public GenericTypedInplace13_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_6();
		}
	}

	public static class Inplace13_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_7 
			{
				public GenericTypedInplace13_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_7();
		}
	}

	public static class Inplace13_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_8 
			{
				public GenericTypedInplace13_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_8();
		}
	}

	public static class Inplace13_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_9 
			{
				public GenericTypedInplace13_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_9();
		}
	}

	public static class Inplace13_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_10 
			{
				public GenericTypedInplace13_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType, I11 in11Type, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_10();
		}
	}

	public static class Inplace13_11OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_11 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_11 
			{
				public GenericTypedInplace13_11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, IO ioType, I12 in12Type, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_11 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_11();
		}
	}

	public static class Inplace13_12OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_12 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_12 
			{
				public GenericTypedInplace13_12()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, IO ioType, I13 in13Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_12 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_12();
		}
	}

	public static class Inplace13_13OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace13_13 //
				extends AbstractRichOp> //
				implements Inplaces.Arity13_13 
			{
				public GenericTypedInplace13_13()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity13_13 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace13_13();
		}
	}

	public static class Inplace14_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_1 
			{
				public GenericTypedInplace14_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_1();
		}
	}

	public static class Inplace14_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_2 
			{
				public GenericTypedInplace14_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_2();
		}
	}

	public static class Inplace14_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_3 
			{
				public GenericTypedInplace14_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_3();
		}
	}

	public static class Inplace14_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_4 
			{
				public GenericTypedInplace14_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_4();
		}
	}

	public static class Inplace14_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_5 
			{
				public GenericTypedInplace14_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_5();
		}
	}

	public static class Inplace14_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_6 
			{
				public GenericTypedInplace14_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_6();
		}
	}

	public static class Inplace14_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_7 
			{
				public GenericTypedInplace14_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_7();
		}
	}

	public static class Inplace14_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_8 
			{
				public GenericTypedInplace14_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_8();
		}
	}

	public static class Inplace14_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_9 
			{
				public GenericTypedInplace14_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_9();
		}
	}

	public static class Inplace14_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_10 
			{
				public GenericTypedInplace14_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_10();
		}
	}

	public static class Inplace14_11OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_11 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_11 
			{
				public GenericTypedInplace14_11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, IO ioType, I12 in12Type, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_11 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_11();
		}
	}

	public static class Inplace14_12OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_12 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_12 
			{
				public GenericTypedInplace14_12()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, IO ioType, I13 in13Type, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_12 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_12();
		}
	}

	public static class Inplace14_13OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_13 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_13 
			{
				public GenericTypedInplace14_13()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, IO ioType, I14 in14Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType, in14Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType, in14Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_13 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_13();
		}
	}

	public static class Inplace14_14OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace14_14 //
				extends AbstractRichOp> //
				implements Inplaces.Arity14_14 
			{
				public GenericTypedInplace14_14()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity14_14 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace14_14();
		}
	}

	public static class Inplace15_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_1 
			{
				public GenericTypedInplace15_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_1();
		}
	}

	public static class Inplace15_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_2 
			{
				public GenericTypedInplace15_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_2();
		}
	}

	public static class Inplace15_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_3 
			{
				public GenericTypedInplace15_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_3();
		}
	}

	public static class Inplace15_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_4 
			{
				public GenericTypedInplace15_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_4();
		}
	}

	public static class Inplace15_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_5 
			{
				public GenericTypedInplace15_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_5();
		}
	}

	public static class Inplace15_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_6 
			{
				public GenericTypedInplace15_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_6();
		}
	}

	public static class Inplace15_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_7 
			{
				public GenericTypedInplace15_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_7();
		}
	}

	public static class Inplace15_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_8 
			{
				public GenericTypedInplace15_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_8();
		}
	}

	public static class Inplace15_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_9 
			{
				public GenericTypedInplace15_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_9();
		}
	}

	public static class Inplace15_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_10 
			{
				public GenericTypedInplace15_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_10();
		}
	}

	public static class Inplace15_11OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_11 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_11 
			{
				public GenericTypedInplace15_11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, IO ioType, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_11 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_11();
		}
	}

	public static class Inplace15_12OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_12 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_12 
			{
				public GenericTypedInplace15_12()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, IO ioType, I13 in13Type, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_12 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_12();
		}
	}

	public static class Inplace15_13OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_13 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_13 
			{
				public GenericTypedInplace15_13()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, IO ioType, I14 in14Type, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType, in14Type, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType, in14Type, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_13 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_13();
		}
	}

	public static class Inplace15_14OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_14 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_14 
			{
				public GenericTypedInplace15_14()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, IO ioType, I15 in15Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, ioType, in15Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, ioType, in15Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_14 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_14();
		}
	}

	public static class Inplace15_15OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace15_15 //
				extends AbstractRichOp> //
				implements Inplaces.Arity15_15 
			{
				public GenericTypedInplace15_15()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity15_15 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace15_15();
		}
	}

	public static class Inplace16_1OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_1 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_1 
			{
				public GenericTypedInplace16_1()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(IO ioType, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(ioType, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_1 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_1();
		}
	}

	public static class Inplace16_2OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_2 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_2 
			{
				public GenericTypedInplace16_2()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, IO ioType, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, ioType, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_2 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_2();
		}
	}

	public static class Inplace16_3OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_3 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_3 
			{
				public GenericTypedInplace16_3()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, IO ioType, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, ioType, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_3 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_3();
		}
	}

	public static class Inplace16_4OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_4 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_4 
			{
				public GenericTypedInplace16_4()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, IO ioType, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, ioType, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_4 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_4();
		}
	}

	public static class Inplace16_5OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_5 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_5 
			{
				public GenericTypedInplace16_5()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, IO ioType, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, ioType, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_5 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_5();
		}
	}

	public static class Inplace16_6OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_6 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_6 
			{
				public GenericTypedInplace16_6()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, IO ioType, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, ioType, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_6 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_6();
		}
	}

	public static class Inplace16_7OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_7 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_7 
			{
				public GenericTypedInplace16_7()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, IO ioType, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, ioType, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_7 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_7();
		}
	}

	public static class Inplace16_8OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_8 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_8 
			{
				public GenericTypedInplace16_8()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, IO ioType, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, ioType, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_8 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_8();
		}
	}

	public static class Inplace16_9OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_9 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_9 
			{
				public GenericTypedInplace16_9()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, IO ioType, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, ioType, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_9 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_9();
		}
	}

	public static class Inplace16_10OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_10 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_10 
			{
				public GenericTypedInplace16_10()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, IO ioType, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, ioType, in11Type, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_10 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_10();
		}
	}

	public static class Inplace16_11OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_11 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_11 
			{
				public GenericTypedInplace16_11()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, IO ioType, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, ioType, in12Type, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_11 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_11();
		}
	}

	public static class Inplace16_12OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_12 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_12 
			{
				public GenericTypedInplace16_12()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, IO ioType, I13 in13Type, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, ioType, in13Type, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_12 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_12();
		}
	}

	public static class Inplace16_13OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_13 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_13 
			{
				public GenericTypedInplace16_13()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, IO ioType, I14 in14Type, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType, in14Type, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, ioType, in14Type, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_13 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_13();
		}
	}

	public static class Inplace16_14OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_14 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_14 
			{
				public GenericTypedInplace16_14()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, IO ioType, I15 in15Type, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, ioType, in15Type, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, ioType, in15Type, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_14 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_14();
		}
	}

	public static class Inplace16_15OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_15 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_15 
			{
				public GenericTypedInplace16_15()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, IO ioType, I16 in16Type) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, ioType, in16Type);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, ioType, in16Type);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_15 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_15();
		}
	}

	public static class Inplace16_16OpWrapper //
		implements //
		OpWrapper> //
	{

		@Override
		public RichOp> wrap( //
			final OpInstance> instance, //
			final OpEnvironment env, //
			final MatchingConditions conditions)
		{
			class GenericTypedInplace16_16 //
				extends AbstractRichOp> //
				implements Inplaces.Arity16_16 
			{
				public GenericTypedInplace16_16()
				{
					super(instance, env, conditions);
				}

				@Override
				public void mutate(I1 in1Type, I2 in2Type, I3 in3Type, I4 in4Type, I5 in5Type, I6 in6Type, I7 in7Type, I8 in8Type, I9 in9Type, I10 in10Type, I11 in11Type, I12 in12Type, I13 in13Type, I14 in14Type, I15 in15Type, IO ioType) //
				{
					preprocess(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, ioType);

					// Call the op
					instance.op().mutate(in1Type, in2Type, in3Type, in4Type, in5Type, in6Type, in7Type, in8Type, in9Type, in10Type, in11Type, in12Type, in13Type, in14Type, in15Type, ioType);

					// Log a new execution
					postprocess(ioType);
				}

				@Override
				public Inplaces.Arity16_16 asOpType() {
					return this;
				}

			}
			return new GenericTypedInplace16_16();
		}
	}



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy