Find the dependency and scheduling problems in this generated system.
csharp
[BurstCompile]
public partial struct VelocitySystem : ISystem
{
[BurstCompile]
public void OnUpdate(ref SystemState state)
{
var handle = new IntegrateVelocityJob()
.ScheduleParallel();
handle.Complete();
state.Dependency = handle;
}
}